ressources.html.twig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <div class="titre_nsb after-h1">
  2. <h1>Ressources</h1>
  3. <div class="souligne toright" >
  4. <svg width="100%" height="0.5rem">
  5. <rect class="" width="100%" height="100%" style="fill:rgb(0,0,0)" />
  6. </svg>
  7. </div>
  8. <!-- <div class="after-h1-finish">
  9. <svg width="50%" height="0.5rem">
  10. <rect width="100%" height="100%" style="fill:rgb(0,0,0);stroke-width:3;stroke:rgb(0,0,0)" />
  11. </svg>
  12. </div> -->
  13. </div>
  14. {{ content|raw }}
  15. <div class="features {{ page.header.class}}">
  16. <div class="feature-items">
  17. <div class="texte-cache">
  18. {% for rapport in page.header.rapports %}
  19. <div class="feature ">
  20. {% if rapport.couverture and rapport.pdf %}
  21. <a href="{{page.media[rapport.pdf].url|e }}" download >
  22. <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
  23. {% endif %}
  24. {% if rapport.titre_du_rapport %}
  25. <h4>{{ rapport.titre_du_rapport }}</h4>
  26. {% endif %}
  27. {% if rapport.texte_de_presentation %}
  28. <p>{{ rapport.texte_de_presentation|markdown }}</p>
  29. {% endif %}
  30. </a>
  31. </div>
  32. {% endfor %}
  33. </div>
  34. </div>
  35. </div>
  36. <!-- <a href=""> -->
  37. <button class="bouton-ouverture">Voir plus</button>
  38. <!-- </a> -->