reitanlage-oranienburg/templates/partials/logo.html.twig
2020-01-25 03:39:55 +01:00

9 lines
331 B
Twig

<a href="{{ home_url }}" class="navbar-brand mr-10">
{% set logo = theme_var('custom_logo') %}
{% if logo %}
{% set logo_file = (logo|first).name %}
<img src="{{ url('theme://images/logo/' ~ logo_file) }}" />
{% else %}
<img src="{{ url('theme://images/ro-logo.svg') }}" />
{% endif %}
</a>