2019-05-14 19:59:47 +02:00

23 lines
549 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 '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 %}