Reputation: 533
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.
Upvotes: 0
Views: 1051
Reputation: 924
Use
{neos:uri.node(node: node)}
instead.
Fx:
<a href="{neos:uri.node(node: node)}">Link Here</a>
Upvotes: 1