{% extends "./public.html" %}
{% comment %}Display a list of BasePages{% endcomment %}
{% load i18n aircox %}
{% block main %}
{{ block.super }}
{% block list-container %}
{% block list %}
{% with has_headline=True %}
{% for object in object_list %}
{% block list_object %}
{% page_widget item_widget|default:"item" object %}
{% endblock %}
{% empty %}
{% blocktranslate %}There is nothing published here...{% endblocktranslate %}
{% endfor %}
{% endwith %}
{% endblock %}
{% block list-pagination %}
{% include "./widgets/list_pagination.html" %}
{% endblock %}
{% endblock %}
{% endblock %}