forked from rebillar/site-accueil-insa
17 lines
1,012 B
Twig
17 lines
1,012 B
Twig
<span id="logo" class="logo brand-logo {% if centeredLogo is defined and centeredLogo %}center{% endif %}">
|
|
{% if logoLink is not defined or logoLink is not empty %}
|
|
<a href="{{ logoLink|default('index.php') }}" tabindex="-1"
|
|
title="{% if isCustomLogo %}{{ 'General_PoweredBy'|translate }} {% endif %}Matomo{% if not isCustomLogo %} # {{ 'General_OpenSourceWebAnalytics'|translate }}{% endif %}"
|
|
>
|
|
{% endif %}
|
|
{% if hasSVGLogo %}
|
|
<img src='{{ logoSVG }}?matomo' tabindex="3"
|
|
alt="{% if isCustomLogo %}{{ 'General_PoweredBy'|translate }} {% endif %}Matomo"
|
|
class="{% if not isCustomLogo %}default-piwik-logo{% endif %}" />
|
|
{% else %}
|
|
<img src='{% if useLargeLogo|default(false) %}{{ logoLarge }}{% else %}{{ logoHeader }}{% endif %}?matomo' alt="{% if isCustomLogo %}{{ 'General_PoweredBy'|translate }} {% endif %}Matomo" />
|
|
{% endif %}
|
|
{% if logoLink is not defined or logoLink is not empty %}
|
|
</a>
|
|
{% endif %}
|
|
</span>
|