24 lines
766 B
Twig
24 lines
766 B
Twig
<div class="modular-row programmes{{ page.header.class}}">
|
|
{{ content|raw }}
|
|
|
|
<div class="">
|
|
{% for programme in page.header.programmes %}
|
|
<div class="">
|
|
<div class="">
|
|
{% if programme.nom_du_programme %}
|
|
<h4>{{ programme.nom_du_programme }}</h4>
|
|
{% endif %}
|
|
{% if programme.texte_de_presentation %}
|
|
<p>{{ programme.texte_de_presentation }}</p>
|
|
{% endif %}
|
|
{% if programme.logo %}
|
|
<img src="/user/pages/01.home/02._programmes/{{programme.logo}} " alt="logo du programme {{programme.nom_du_programme}}" />
|
|
{{ dump(programme.logo) }}
|
|
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|