1234567891011121314151617181920212223242526 |
- {% extends 'partials/base.html.twig' %}
- {% set collection = page.collection() %}
- {% set image = page.media.images|first %}
- {% block body %}
- <section id="body" class="section blog-listing">
- <section class="header-wrapper">
- <div class="bandeau">
- {% if image %}
- {{image.html}}
- {% endif %}
- </div>
- </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 %}
|