Hello there,
i have a multilingual setup and want to include an imprint link to the footer. So i put this on my footer.html.twig file:
<a href="{{ page.find('/imprint').slug }} ">{{ page.find('/imprint').title }}</a>
But if i ever translate this page the page.find('/imprint')
will probably fail. So how did u deal with that? Mayby override the slug in the frontmatter in every single translated file?
Thx in advance.