ressources.html.twig 774 B

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