reitanlage-oranienburg/templates/partials/logo.html.twig

10 lines
331 B
Twig
Raw Normal View History

2019-12-27 18:23:51 +00:00
<a href="{{ home_url }}" class="navbar-brand mr-10">
2020-01-25 02:39:55 +00:00
{% set logo = theme_var('custom_logo') %}
{% if logo %}
2020-01-25 02:39:55 +00:00
{% set logo_file = (logo|first).name %}
<img src="{{ url('theme://images/logo/' ~ logo_file) }}" />
{% else %}
2020-01-25 02:39:55 +00:00
<img src="{{ url('theme://images/ro-logo.svg') }}" />
{% endif %}
2019-12-27 18:23:51 +00:00
</a>