forked from rc/aircox
63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
{% extends "aircox/basepage_list.html" %}
|
|
{% comment %}Display a list of Pages{% endcomment %}
|
|
{% load i18n aircox %}
|
|
|
|
{% block secondary-nav %}
|
|
{% if not parent and categories %}
|
|
<nav class="nav secondary">
|
|
<div class="nav-menu nav-categories">
|
|
{% for cat in categories %}
|
|
<a class="nav-item{% if cat == category %} active{% endif %}"
|
|
href="{% url request.resolver_match.url_name category_slug=cat.slug %}">
|
|
{{ cat.title }}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
<a-switch class="button burger"
|
|
el=".nav-categories" group="nav" icon="fas fa-tags"
|
|
aria-label="{% translate "Categories" %}">
|
|
</a-switch>
|
|
</nav>
|
|
{% 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 %}
|
|
<a href="{% url model.list_url_name %}">{{ model|verbose_name:True }}</a>
|
|
{% elif page.title == "Podcasts" and not category %}
|
|
{% elif page and model.list_url_name %}
|
|
<a href="{% url model.list_url_name %}">{{ page.title }}</a>
|
|
{% if category %}
|
|
<a href="{% url request.resolver_match.url_name category_slug=category.slug %}">
|
|
{{ category.title }}
|
|
</a>
|
|
{% endif %}
|
|
{% else %}
|
|
<a href="{% url request.resolver_match.url_name %}">{{ model|verbose_name:True }}</a>
|
|
{% if category %}
|
|
<a href="{% url request.resolver_match.url_name category_slug=category.slug %}">
|
|
{{ category.title }}
|
|
</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content-container %}{% endblock %}
|