rapport_dactivitees.html.twig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <div class="ressources {{ page.header.class}}">
  2. {{ content|raw }}
  3. {% for rapport in page.header.rapports %}
  4. <div class="ressource">
  5. {% if rapport.couverture and rapport.pdf %}
  6. <a href="{{page.media[rapport.pdf].url|e }}" download >
  7. <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
  8. </a>
  9. {% endif %}
  10. {% if rapport.titre_du_rapport %}
  11. <h4>{{ rapport.titre_du_rapport }}</h4>
  12. {% endif %}
  13. {% if rapport.texte_de_presentation %}
  14. <p>{{ rapport.texte_de_presentation|markdown }}</p>
  15. {% endif %}
  16. </div>
  17. {% endfor %}
  18. </div>
  19. {# ça, ça montre le pdf sur nouvelle page avec possibilité d'imprimer ou de télécharger (page de dialogue du navigateur)
  20. {% if rapport.couverture and rapport.pdf %}
  21. <a href="{{page.media[rapport.pdf].url|e }}" {{rapport.titre_du_rapport}} >
  22. <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
  23. </a>
  24. {% endif %}
  25. #}
  26. {# ça, ça lance le téléchargement du pdf directement
  27. {% if rapport.couverture and rapport.pdf %}
  28. <a href="{{page.media[rapport.pdf].url|e }}" download >
  29. <img src="{{page.media[rapport.couverture].url|e }}" alt="couverture du {{rapport.titre_du_rapport}}" />
  30. </a>
  31. {% endif %}
  32. #}