27 lines
791 B
Twig
27 lines
791 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 %}
|
|
|
|
{# ai essayé de changer les nom et class avec nouveaux champs mais marche pas #}
|
|
<div class="feature-content">
|
|
{% endif %}
|
|
{% if feature.nom %}
|
|
<h4>{{ feature.nom }}</h4>
|
|
{% endif %}
|
|
|
|
|
|
{% if personnes.biographie %}
|
|
<p>{{ personnes.biographie }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|