36 lines
899 B
Twig
36 lines
899 B
Twig
|
{% 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">
|
||
|
{% for module in page.collection() %}
|
||
|
<div class="section nos_pack">
|
||
|
|
||
|
<div class="__intro">
|
||
|
{{module.content}}
|
||
|
</div>
|
||
|
<div class="packs d-flex">
|
||
|
{% include 'components/thumbnails/thumbnails_offre.html.twig' %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</section>
|
||
|
</section>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block devis %}
|
||
|
{% include 'partials/devis.html.twig' %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block newsletter %}
|
||
|
{% include 'partials/newsletters.html.twig' %}
|
||
|
{% endblock %}
|