30 lines
766 B
Twig
30 lines
766 B
Twig
|
|
<div class="titre_nsb">
|
|
{{ content|raw }}
|
|
</div>
|
|
|
|
<div class="features {{ page.header.class}}">
|
|
|
|
|
|
{% for rapport in page.header.rapports %}
|
|
|
|
<div class="feature">
|
|
|
|
{% if rapport.couverture and rapport.pdf %}
|
|
<a href="{{page.media[rapport.pdf].url|e }}" download >
|
|
<img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
|
|
</a>
|
|
{% endif %}
|
|
{% 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 %}
|
|
|
|
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|