{% extends "aircox_cms/base_site.html" %} {% load i18n %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% load aircox_cms %} {% if not object_list %} {% block title %}

{{ page.title }}

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