{% extends "base.html" %} {% block title %}{{ category.label | e }}{% endblock %} {% block meta_description %}Browse {{ category.label | e }} documentation - {{ documents | length }} document{{ 's' if documents | length != 1 else '' }} available.{% endblock %} {# Recursive macro for sidebar navigation tree #} {% macro render_nav_tree(items) %} {% endmacro %} {% block sidebar_content %} {% endblock %} {% block content %}

{{ category.label | e }}

{% if category.description %}

{{ category.description | e }}

{% endif %}
{% if subcategories %}

Subcategories

{% endif %}

Documents

{% if documents %}
{% for doc in documents %}

{{ doc.title | e }}

{% if doc.excerpt %}

{{ doc.excerpt | e }}

{% endif %}
{% if doc.tags %}
{% for tag in doc.tags %} {{ tag | e }} {% endfor %}
{% endif %} {% if doc.last_modified %} {% endif %}
{% endfor %}
{% else %}

No documents in this category yet.

{% endif %}
{% endblock %}