{% extends "index.html" %} {% block title %}Tags in {{ SITENAME }}{% endblock %} {% block ogtitle %}Tags in {{ SITENAME }}{% endblock %} {% block ogurl %}{{ SITEURL }}/tags.html{%endblock%}%} {% block canonicalurl %}{{ SITEURL }}/tags.html{%endblock%} {% block content %}

{% block content_title %}Tags{% endblock %}

{% for tag, articles in tags|sort %}
{{ tag }} ({{ articles|count }})
{% endfor %}
{% endblock %}