2017-08-20 00:39:19 +02:00
|
|
|
{% extends "cofcms/base_aside.html" %}
|
2017-08-19 01:32:26 +02:00
|
|
|
{% load wagtailimages_tags cofcms_tags %}
|
|
|
|
|
2017-08-20 00:39:19 +02:00
|
|
|
{% block aside %}
|
|
|
|
{% calendar %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-08-19 01:32:26 +02:00
|
|
|
{% block content %}
|
|
|
|
<section class="intro">
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
<div>{{ page.introduction|safe }}</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="actulist">
|
|
|
|
{% for actu in page.actus %}
|
|
|
|
<article class="actu">
|
|
|
|
<h2>{{ actu.title }}</h2>
|
|
|
|
{{ actu.body|safe }}
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|