123456789101112131415161718192021222324252627282930 |
- <div class="titre_nsb">
- {{ content|raw }}
- </div>
- <div class="features {{ page.header.class}}">
- <div class="feature-items">
- {% 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>
- </div>
|