logo.html.twig 281 B

123456789
  1. {% set logo = theme_var(mobile ? 'custom_logo_mobile' : 'custom_logo') %}
  2. {% if logo %}
  3. {% set logo_file = (logo|first).name %}
  4. <img src="{{ url('theme://images/logo/' ~ logo_file) }}" alt="{{ site.name }}" />
  5. {% else %}
  6. {% include('@images/grav-logo.svg') %}
  7. {% endif %}