27 lines
809 B
Twig
27 lines
809 B
Twig
<div class="modular-row personnes {{ page.header.class}}">
|
|
{{ content|raw }}
|
|
<div class="feature-items">
|
|
{% for feature in page.header.personnes %}
|
|
<div class="feature">
|
|
{% if feature.icon %}
|
|
<i class="fa fa-fw fa-{{ feature.icon }}"></i>
|
|
<div class="feature-content icon-offset">
|
|
{% else %}
|
|
|
|
<div class="feature-content">
|
|
{% endif %}
|
|
{% if feature.nom %}
|
|
<h4>{{ feature.nom }}</h4>
|
|
{% endif %}
|
|
{% if feature.fonction %}
|
|
<h6>{{ feature.fonction }}</h6>
|
|
{% endif %}
|
|
{% if feature.biographie %}
|
|
<p>{{ feature.biographie }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|