grav-theme-future2021/templates/partials/logo.html.twig
2024-01-04 22:42:46 +01:00

7 lines
No EOL
321 B
Twig
Executable file

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