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

13 lines
431 B
Twig
Raw Normal View History

2020-01-26 13:23:47 +00:00
{% set logo = theme_var('custom_logo') %}
{% if style %}
{% set style='style="' ~ style ~ '"' %}
{% else %}
{% set style='' %}
{% endif %}
{% if logo %}
{% set logo_file = (logo|first).name %}
2021-07-22 22:28:26 +00:00
<img {{ style }} alt="The logo of the webpage" src="{{ url('theme://images/logo/' ~ logo_file) }}" />
2020-01-26 13:23:47 +00:00
{% else %}
2021-07-22 22:28:26 +00:00
<img {{ style }} alt="The logo of the webpage" src="{{ url('theme://images/logo.svg') }}" />
2020-01-26 13:23:47 +00:00
{% endif %}