ressources.html.twig 806 B

123456789101112131415161718192021222324252627282930
  1. <div class="titre_nsb">
  2. {{ content|raw }}
  3. </div>
  4. <div class="features {{ page.header.class}}">
  5. <div class="feature-items">
  6. {% for rapport in page.header.rapports %}
  7. <div class="feature">
  8. {% if rapport.couverture and rapport.pdf %}
  9. <a href="{{page.media[rapport.pdf].url|e }}" download >
  10. <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
  11. </a>
  12. {% endif %}
  13. {% if rapport.titre_du_rapport %}
  14. <h4>{{ rapport.titre_du_rapport }}</h4>
  15. {% endif %}
  16. {% if rapport.texte_de_presentation %}
  17. <p>{{ rapport.texte_de_presentation|markdown }}</p>
  18. {% endif %}
  19. </div>
  20. {% endfor %}
  21. </div>
  22. </div>