{% extends 'base.html' %} {% block title %} All Tags ยท {{ super() }} {% endblock title %} {% block head_description %} All tags used in the {{ SITENAME|striptags }} blog. {% endblock head_description %} {% block feed_links %} {{ super() }} {% include '_includes/feeds_tags.html' %} {% endblock feed_links %} {% block content %}
{% for tag, articles in tags|sort %}

{{ tag }}

{% endfor %}
{% endblock content %} {% block script %} {{ super() }} {% endblock script %}