ressources.html.twig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <div class="titre_nsb">
  2. <h1>Ressources</h1>
  3. <div class="test" >
  4. <svg width="100%" height="0.5rem">
  5. <rect class="after-h1" 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. {% for rapport in page.header.rapports %}
  18. <div class="feature">
  19. {% if rapport.couverture and rapport.pdf %}
  20. <a href="{{page.media[rapport.pdf].url|e }}" download >
  21. <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
  22. </a>
  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. </div>
  31. {% endfor %}
  32. </div>
  33. </div>