{% extends "aircox/basepage_list.html" %}
{% comment %}Display a list of Pages{% endcomment %}
{% load i18n aircox %}
{% block secondary-nav %}
{% if not parent and categories %}
{% endif %}
{% endblock %}
{% block title %}
{% if parent %}{{ parent.title }}
{% else %}{{ block.super }}
{% endif %}
{% endblock %}
{% block header %}
{% if page and not object %}
    {% with page as object %}
    {{ block.super }}
    {% endwith %}
{% else %}
    {{ block.super }}
{% endif %}
{% endblock %}
{% block breadcrumbs %}
{% if parent and model.list_url_name %}
    {% include "./widgets/breadcrumbs.html" with page=parent %}
    {{ model|verbose_name:True }}
{% elif page and model.list_url_name %}
    {{ page.title }}
    {% if category %}
    
        {{ category.title }}
    
    {% endif %}
{% else %}
    {{ model|verbose_name:True }}
    {% if category %}
    
        {{ category.title }}
    
    {% endif %}
{% endif %}
{% endblock %}
{% block content-container %}{% endblock %}
{% block list-pagination %}
{% include "./widgets/page_pagination.html" %}
{% endblock %}
{% block list-container %}
{% block list %}
{% with has_headline=True %}
    {% for object in object_list %}
        {% block list_object %}
            {% page_widget item_widget|default:"program" object %}
        {% endblock %}
    {% empty %}
        {% blocktranslate %}There is nothing published here...{% endblocktranslate %}
    {% endfor %}
{% endwith %}
{% endblock %}
{% endblock %}