26 lines
852 B
Twig
26 lines
852 B
Twig
<div class="modular-row {{ page.header.class}}">
|
|
{{ content|raw }}
|
|
|
|
<div class="">
|
|
{% for rapport in page.header.rapports %}
|
|
|
|
<div class="">
|
|
<div class="">
|
|
{% if rapport.titre_du_rapport %}
|
|
<h4>{{ rapport.titre_du_rapport }}</h4>
|
|
{% endif %}
|
|
{% if rapport.texte_de_presentation %}
|
|
<p>{{ rapport.texte_de_presentation|markdown }}</p>
|
|
{% endif %}
|
|
{% if rapport.couverture and rapport.pdf %}
|
|
<a href="{{page.media[rapport.pdf].url|e }}" {{rapport.titre_du_rapport}}>
|
|
<img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
|
|
</a>
|
|
{% endif %}
|
|
{{ dump(rapport)}}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|