{% extends "base.html" %} {% block title %}Tags{% endblock %} {% block description %}{% endblock %} {% block content %}

Tags

{% for tag, articles in tags|sort %}

{{ tag }} ({{ articles|count }})

{% for article in articles %} {% endfor %} {% endfor %}
{% endblock %}