{# Base navigation screen for resources #} {% extends 'content/base.html' %} {% load static %} {# Show a GitHub button on tag pages #} {% if is_tag_listing %} {% block title_element %}
{{ block.super }}
{% endblock %} {% endif %} {% block page_content %} {# Nested Categories #} {% for category, data in categories.items %}
{{ data.title }}

{{ data.description }}

{% endfor %} {# Single Pages #} {% for page, data in pages.items %}
{{ data.title }} {% if is_tag_listing %}
{{ data.description | safe }}
{% else %}

{{ data.description }}

{% endif %}
{% endfor %} {% endblock %}