Link to startpage

Perhaps a silly question, but I can’t find a way to link to the home page of my website. I don’t want to name the page because I don’t know if it will change its name.
Is there a possibility in Twig to do something like Homepage or so?

Thanks,
Marc

Hi Marc,

yes in Twig it is possible to get the home URL with the variable base_url. Just put

<a href="{{ base_url }}">Homepage</a>

anywhere you like in the Twig file and thats it.

Thanks! For me {{ base_url_absolute }} worked as expected…