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

All Categories

{% if categories %}
{% for category_info in categories %} {{ category_info.display_name }} ({{ category_info.count }}) {% endfor %}
{% else %}

No categories yet.

{% endif %}
{% endblock %}