{% 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.title == "Podcasts" and not category %}
{% 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 %}