Hi there,
I’m trying to edit the base.html.twig so that the home page shows a certain logo and all other pages show another. I tried using an if else statement, but am not sure how to call a page within the statement…have tried for example:
{% if title == home %}
<h3><a href="{{ base_url == '' ? '/' : base_url }}"><img src="{{ url('theme://images/logowhite.png') }}" /></a></h3>
{% else %}
<h3><a href="{{ base_url == '' ? '/' : base_url }}"><img src="{{ url('theme://images/logo.png') }}" /></a></h3>
{% endif %}
but end up with the same logo (logowhite) on all pages, not only the homepage.
Any pointers will be really appreciated :=)