{% extends "base.html" %} {% block title %}{% if tag %}Tag: {{ tag | e }}{% else %}All Tags{% endif %}{% endblock %} {% block meta_description %}{% if tag %}Documents tagged with "{{ tag | e }}"{% else %}Browse all documentation tags{% endif %}{% endblock %} {% block sidebar_content %} {% endblock %} {% block content %}
{% if tag %}

Tag: {{ tag | e }}

{{ documents | length }} document{{ 's' if documents | length != 1 else '' }} with this tag

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

{{ doc.title | e }}

{% if doc.excerpt %}

{{ doc.excerpt | e }}

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

No documents found with the tag '{{ tag | e }}'.

{% endif %} {% else %}

All Tags

{% if all_tags %}

{{ all_tags | length }} tag{{ 's' if all_tags | length != 1 else '' }}

{% endif %}
{% if all_tags %}
{% for t in all_tags %} {{ t.name | e }} {{ t.count }} {% endfor %}
{% else %}

No tags have been created yet.

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