mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
7 lines
No EOL
321 B
Twig
Executable file
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 %} |