{% extends "aircox_cms/base_site.html" %} {% load i18n %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% load aircox_cms %} {% block content %}
{% if page.body %}
{{ page.body|richtext}}
{% endif %} {% if object_list %} {# list view #} {% with list_paginator=paginator %} {% include "aircox_cms/snippets/list.html" %} {% endwith %} {% else %} {# detail view #} {% if page.links.count %} {% include "aircox_cms/sections/section_link_list.html" %} {% endif %} {% endif %}
{% endblock %}