{% extends "base.html" %} {% block title %}All Tags - {{ site_title }}{% endblock %} {% block meta_tags %} {% from '_listing_meta_tags.html' import listing_meta_tags with context %} {{ listing_meta_tags("All Tags - " ~ site_title) }} {% endblock %} {% block extra_head %} {% endblock %} {% block content %}

All Tags

{% if tags %}
{% for tag_info in tags %} {{ tag_info.display_name }} ({{ tag_info.count }}) {% endfor %}
{% else %}

No tags yet.

{% endif %}
{% endblock %}