mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
9 lines
No EOL
323 B
Twig
9 lines
No EOL
323 B
Twig
{% set logo = theme_var(mobile ? 'custom_logo_mobile' : 'custom_logo') %}
|
|
<a href="{{ home_url }}" class="logo">
|
|
{% 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> |