How can I get the current URI within a Typo3 Neos Page Template?
I tried something like {fed:page.absoluteUrl()}. But this doesn't work.
{fed:page.absoluteUrl()}
Use
{neos:uri.node(node: node)}
instead.
Fx:
<a href="{neos:uri.node(node: node)}">Link Here</a>