1234567891011121314151617181920 |
- {% extends 'partials/base.html.twig' %}
- {% set collection = page.collection() %}
- {% set image = page.media.images|first %}
- {% block body %}
- <section id="body" class="start">
- <section class="header-wrapper">
- {% include 'components/hero/bandeau.html.twig' %}
- </section>
- <section class="body-wrapper">
- <div class="content">
- {{content}}
- <div class="nos_pack">
- {% include 'modular/section_offres.html.twig' %}
- </div>
- </div>
- </section>
- </section>
- {% endblock %}
|