{% extends "aircox_cms/base_site.html" %} {# generic page to display list of articles #} {% load i18n %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% block title %}

{# Translators: titles for the page that shows a list of elements. #} {# Translators: terms are search terms, or tag tarms. url: url to the page #} {% if page.list_from_request %} {% with terms=list_selector.terms %} {% if terms %} {% blocktrans %}Search in publications for {{ terms }}{% endblocktrans %} {% elif list_selector.filter_related %} {# should never happen #} {% with title=list_selector.filter_related.title url=list_selector.filter_related.url %} {% blocktrans %} Related to {{ title }}{% endblocktrans %} {% endwith %} {% else %} {% blocktrans %}All the publications{% endblocktrans %} {% endif %} {% endwith %} {% else %} {{ page.title }} {% endif %}

{% endblock %} {% block content %} {% if page.list_from_request %} {% with related=list_selector.filter_related %} {% if related %}
{% image related.cover fill-128x128 class="cover item_cover" %} {{ related.summary }} {% trans "More about it" %}
{% elif page.body %}
{{ page.body|richtext }}
{% endif %} {% endwith %} {% with list_paginator=paginator %} {% include "aircox_cms/snippets/list.html" %} {% endwith %} {% else %}
{{ page.body|richtext }}
{% endif %} {% endblock %}