forked from rc/aircox
16 lines
300 B
HTML
Executable File
16 lines
300 B
HTML
Executable File
{% extends "aircox_cms/base_site.html" %}
|
|
{# display a timetable of planified diffusions by days #}
|
|
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block content %}
|
|
{% if page.body %}
|
|
<div class="body">
|
|
{{ page.body|richtext }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include "aircox_cms/snippets/date_list.html" %}
|
|
{% endblock %}
|
|
|