{% extends "cms/base_site.html" %} {% load i18n %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% load aircox_cms %} {% block content %} {% if object_list %} {# list view #}
{{ page.summary }} {% trans "Go back to the publication" %}
{% with list_paginator=paginator %} {% include "cms/snippets/list.html" %} {% endwith %} {% else %} {# detail view #}
{% if page.cover %} {% image page.cover max-600x480 class="cover" height="" width="" %} {% endif %}
{{ page.body|richtext}} {% block content_extras %}{% endblock %}
{% render_sections position="post_content" %}
{% include "cms/snippets/comments.html" %}
{% endif %} {% endblock %}