26 lines
922 B
Twig
26 lines
922 B
Twig
<div class="modular-row programmes{{ page.header.class}}">
|
|
{{ content|raw }}
|
|
<div class="feature-items">
|
|
{% for programme in page.header.programmes %}
|
|
<div class="feature">
|
|
{% if programme.icon %}
|
|
<i class="fa fa-fw fa-{{ programme.icon }}"></i>
|
|
<div class="feature-content icon-offset">
|
|
{% else %}
|
|
<div class="feature-content">
|
|
{% endif %}
|
|
{% 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="{{ page.media[page.header.programmes.logo] }}" alt=“logo_programme” />
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|