25 lines
721 B
Twig
25 lines
721 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|markdown }}</p>
|
|
{% endif %}
|
|
{% if programme.logo %}
|
|
<img src="{{page.media[programme.logo].url|e }}" alt="logo du programme {{programme.nom_du_programme}}" />
|
|
|
|
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|