{% extends "base.html" %} {% block title %} – {{ _('Tags') }}{% endblock %} {% block meta %} {% if PLUGINS and 'tag_cloud' in PLUGINS %} {% endif %} {% endblock %} {% block content %}

{{ _('Tags') }}

{% if PLUGINS and 'tag_cloud' in PLUGINS %}

{{ _('Tag Cloud') }}

{{ _('Tag List') }}

{% endif %} {% if not PLUGINS or 'tag_cloud' not in PLUGINS %}
{% endif %}
    {%- for tag, articles in tags|sort %}
  • {{ tag }} ({{ articles|count }})
  • {% endfor %}
{% endblock %}