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

15 lines
499 B
Twig
Raw Normal View History

2019-12-27 18:23:51 +00:00
{% set logo = theme_var(mobile ? 'custom_logo_mobile' : 'custom_logo') %}
<a href="{{ home_url }}" class="navbar-brand mr-10">
2020-01-09 00:20:05 +00:00
<div class="float-left">
{% if logo %}
{% set logo_file = (logo|first).name %}
2020-01-13 22:45:30 +00:00
<img src="{{ url('theme://images/logo/' ~ logo_file) }}" />
2020-01-09 00:20:05 +00:00
{% else %}
2020-01-13 22:45:30 +00:00
<img src="{{ url('theme://images/ro-logo.svg') }}" />
2020-01-09 00:20:05 +00:00
{% endif %}
</div>
<div class="ml-2 float-right">
Reitanlage<br>Oranienburg
</div>
2019-12-27 18:23:51 +00:00
</a>