31 lines
962 B
HTML
31 lines
962 B
HTML
{% extends "cofcms/base_aside.html" %}
|
|
{% load static cofcms_tags wagtailimages_tags %}
|
|
|
|
{% block aside %}
|
|
{% calendar %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="intro">
|
|
<h1>{{ page.title }}</h1>
|
|
<div>{{ page.introduction|safe }}</div>
|
|
</section>
|
|
|
|
<section class="actuhome">
|
|
{% for actu in page.actus %}
|
|
<article class="actu">
|
|
<div class="actu-header">
|
|
{% if actu.image %}
|
|
{% image actu.image fill-400x200 class="actu-img" %}
|
|
{% endif %}
|
|
<h2>{{ actu.title }}</h2>
|
|
</div>
|
|
{% if actu.is_event %}
|
|
<div class="actu-misc">
|
|
<span class="actu-minical">{% mini_calendar actu %}</span>{{ actu.dates }}
|
|
</div>
|
|
{% endif %}
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock %}
|