9 lines
331 B
Twig
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>
|