2021-06-21 18:12:24 +02:00
|
|
|
|
|
|
|
<div class="titre-module">{{page.title}}</div>
|
|
|
|
|
|
|
|
<div class="equipe {{ page.header.class}}">
|
|
|
|
{{ content|raw }}
|
|
|
|
|
|
|
|
|
|
|
|
{% for personne in page.header.personnes %}
|
2021-06-22 12:54:55 +02:00
|
|
|
|
2021-06-21 18:12:24 +02:00
|
|
|
<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 %}
|
|
|
|
|
2021-06-22 12:54:55 +02:00
|
|
|
</div>
|
2021-06-21 18:12:24 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|