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

18 lines
433 B
HTML
Raw Normal View History

2017-08-26 18:05:20 +02:00
{% extends "cofcms/base.html" %}
{% load wagtailimages_tags cofcms_tags %}
{% block content %}
<section class="intro">
<h1>{{ page.title }}</h1>
2018-01-22 21:24:20 +01:00
<p class="date">A lieu {{ page.dates }}</p>
<p>{{ page.chapo }}</p>
2017-08-26 18:05:20 +02:00
</section>
<section class="pagecontent">
{% image page.image width-700 %}
<article>
{{ page.body|safe }}
</article>
</section>
{% endblock %}