nos-offres.html.twig 899 B

1234567891011121314151617181920212223242526272829303132333435
  1. {% extends 'partials/base.html.twig' %}
  2. {% set collection = page.collection() %}
  3. {% set image = page.media.images|first %}
  4. {% block body %}
  5. <section id="body" class="start">
  6. <section class="header-wrapper">
  7. {% include 'components/hero/bandeau.html.twig' %}
  8. </section>
  9. <section class="body-wrapper">
  10. <div class="content">
  11. {% for module in page.collection() %}
  12. <div class="section nos_pack">
  13. <div class="__intro">
  14. {{module.content}}
  15. </div>
  16. <div class="packs d-flex">
  17. {% include 'components/thumbnails/thumbnails_offre.html.twig' %}
  18. </div>
  19. </div>
  20. {% endfor %}
  21. </div>
  22. </section>
  23. </section>
  24. {% endblock %}
  25. {% block devis %}
  26. {% include 'partials/devis.html.twig' %}
  27. {% endblock %}
  28. {% block newsletter %}
  29. {% include 'partials/newsletters.html.twig' %}
  30. {% endblock %}