12345678910111213141516171819202122 |
- {% 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 'partials/bandeau.html.twig' %}
- </section>
- <section class="body-wrapper">
- <div class="content">
- <h2>{{page.title}}</h2>
- {{content}}
- </div>
- {% block sidebar %}
- {% include 'partials/sidebar.html.twig' %}
- {% endblock %}
- </section>
- </section>
- {% endblock %}
|