reitanlage-oranienburg/templates/partials/logo.html.twig
Tobias Reisinger 0bb3d93704 add: fontawesome
fix: navbar (now sidebar)
2020-01-24 01:43:19 +01:00

10 lines
355 B
Twig

{% set logo = theme_var(mobile ? 'custom_logo_mobile' : 'custom_logo') %}
<a href="{{ home_url }}" class="navbar-brand mr-10">
{% 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>