kpsul/gestioncof/cms/templates/cofcms/cof_actu_page.html

18 lines
498 B
HTML

{% extends "cofcms/base.html" %}
{% load wagtailcore_tags 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|richtext }}
</article>
</section>
{% endblock %}