grav-theme-future2021/templates/partials/logo.html.twig
2023-02-25 22:56:51 +01:00

9 lines
377 B
Twig

{% set logo = theme_var('custom_logo_mobile') ?: theme_var('custom_logo') %}
<a href="{{ home_url }}" class="logo" rel="nofollow" title="{{ site.title }}">
{% if logo %}
{% set logo_file = (logo|first).name %}
<img src="{{ url('theme://images/logo/' ~ logo_file) }}" alt="{{ site.title }}"/>
{% else %}
{% include('@images/grav-logo.svg') %}
{% endif %}
</a>