ressources.html.twig 1.5 KB

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