kpsul/gestioncof/cms/templates/cofcms/cof_actu_page.html
2020-03-29 16:11:02 +02:00

18 lines
477 B
HTML

{% extends "cofcms/base.html" %}
{% load wagtailimages_tags cofcms_tags i18n %}
{% block content %}
<section class="intro">
<h1>{{ page.title }}</h1>
<p class="date">{% trans "A lieu" %} {{ page|dates }}</p>
<p>{{ page.chapo }}</p>
</section>
<section class="pagecontent">
<div class="image">{% image page.image width-700 %}</div>
<article>
{{ page.body|safe }}
</article>
</section>
{% endblock %}