27 lines
622 B
Twig
27 lines
622 B
Twig
{% 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 %}
|