nos-offres.html.twig 530 B

1234567891011121314151617181920
  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. {{content}}
  12. <div class="nos_pack">
  13. {% include 'modular/section_offres.html.twig' %}
  14. </div>
  15. </div>
  16. </section>
  17. </section>
  18. {% endblock %}