logo.html.twig 285 B

1234567
  1. {% set logo = theme_var(mobile ? 'custom_logo_mobile' : 'custom_logo') %}
  2. <a href="{{ home_url }}" class="navbar-brand mr-10">
  3. {% if logo %}
  4. {% set logo_file = (logo|first).name %}
  5. <img src="{{ url('theme://images/logo/' ~ logo_file) }}" alt="{{ site.name }}" />
  6. {% endif %}
  7. </a>