2021-06-22 12:54:55 +02:00

36 lines
871 B
Twig

<div class="titre-module">{{page.title}}</div>
<div class="equipe {{ page.header.class}}">
{{ content|raw }}
{% for personne in page.header.personnes %}
<div class="personne">
<div class="photo">
{% if personne.portrait %}
<img src="{{page.media[personne.portrait].url|e }}" alt="photo de {{personne.nom}}" />
{% endif %}
</div>
<div class="info">
{% if personne.nom %}
<h5>{{ personne.nom }}</h5>
{% endif %}
{% if personne.fonction %}
<h6>{{ personne.fonction }}</h6>
{% endif %}
{% if personne.biographie %}
<p>{{ personne.biographie|markdown }} </p>
{% endif %}
</div>
</div>
{% endfor %}
</div>