gestioCOF/gestioncof/cms/templates/cofcms/cof_actu_page.html
2018-01-28 19:10:14 +01:00

17 lines
458 B
HTML

{% extends "cofcms/base.html" %}
{% load wagtailimages_tags cofcms_tags %}
{% block content %}
<section class="intro">
<h1>{{ page.title }}</h1>
<p class="date">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 %}