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

{% if search_query %} {% blocktrans %}Search in publications for {{ search_query }}{% endblocktrans %} {% elif tag_query %} {% blocktrans %}Search in publications for {{ search_query }}{% endblocktrans %} {% elif thread_query %} {# should never happen #} {% with title=thread_query.title url=thread_query.url %} {% blocktrans %} Publications in {{ title }}{% endblocktrans %} {% endwith %} {% else %} {% blocktrans %}All the publications{% endblocktrans %} {% endif %}

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