kpsul/gestioncof/cms/templates/cofcms/cof_actu_index_page.html
2017-08-26 18:05:20 +02:00

27 lines
815 B
HTML

{% extends "cofcms/base_aside.html" %}
{% load wagtailimages_tags cofcms_tags wagtailcore_tags %}
{% block aside %}
{% calendar %}
{% endblock %}
{% 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><a href="{% pageurl actu %}">{{ actu.title }}</a></h2>
{% if actu.is_event %}
<p>{{ actu.chapo }}</p>
{% else %}
{{ actu.body|safe|truncatewords_html:25 }}
{% endif %}
<a href="{% pageurl actu %}">Lire plus &gt;</a>
</article>
{% endfor %}
</section>
{% endblock %}