showcase.html.twig 952 B

123456789101112131415161718192021222324
  1. {% set showcase_image = page.media.images|first %}
  2. {% if showcase_image %}
  3. <div class="modular-row showcase{% if page == page.parent.collection.first %} flush-top{% endif %}" style="background-image: url({{ showcase_image.url }});">
  4. {% else %}
  5. <div class="modular-row showcase">
  6. {% endif %}
  7. <div class="presentation-event">
  8. {{ content|raw }}
  9. <div class="boutons-event">
  10. {% for button in page.header.buttons %}
  11. {% if button.url %}
  12. <a class="bouton {% if button.primary %} primary{% endif %}" href="{{ button.url }}" target="_blank">{{ button.text }}>
  13. {% endif %}
  14. {% if button.pdf %}
  15. <a class="bouton {% if button.primary %} primary{% endif %}" href="{{page.media[button.pdf].url|e }}" download >{{ button.text }}>
  16. {% endif %}
  17. {% endfor %}
  18. </div>
  19. </div>
  20. </div>