16 lines
584 B
Twig
16 lines
584 B
Twig
{#
|
|
Override du bloc logo érable (header).
|
|
Le contenu BDD (champ image du block_content) est volontairement ignoré :
|
|
on rend en dur le SVG du thème pour que le logo fasse partie du design
|
|
system et soit versionné avec le code. Pour changer le logo, remplacer
|
|
le fichier assets/logo_erable_ardoise.svg.
|
|
#}
|
|
<div{{ attributes }}>
|
|
{{ title_prefix }}
|
|
{% if label %}<h2{{ title_attributes }}>{{ label }}</h2>{% endif %}
|
|
{{ title_suffix }}
|
|
<a href="{{ path('<front>') }}">
|
|
<img src="/{{ directory }}/assets/logo_erable_ardoise.svg" alt="Logo Érable">
|
|
</a>
|
|
</div>
|