23 lines
549 B
Twig
Raw Normal View History

2019-04-02 19:54:29 +02:00
{% extends 'partials/base.html.twig' %}
{% set collection = page.collection() %}
{% set image = page.media.images|first %}
{% block body %}
2019-05-14 19:59:47 +02:00
<section id="body" class="start">
2019-05-09 00:26:27 +02:00
<section class="header-wrapper">
2019-05-14 19:59:47 +02:00
{% include 'partials/bandeau.html.twig' %}
2019-05-09 00:26:27 +02:00
</section>
2019-04-02 19:54:29 +02:00
2019-05-09 00:26:27 +02:00
<section class="body-wrapper">
2019-04-03 15:29:46 +02:00
<div class="content">
<h2>{{page.title}}</h2>
{{content}}
</div>
2019-04-02 19:54:29 +02:00
2019-04-09 18:05:36 +02:00
{% block sidebar %}
{% include 'partials/sidebar.html.twig' %}
{% endblock %}
</section>
2019-05-09 00:26:27 +02:00
</section>
2019-04-02 19:54:29 +02:00
{% endblock %}