{% extends 'base.html' %} {% block title %} Tous les tags · {{ super() }} {% endblock title %} {% block head_description %} Tous les tags du {{ SITENAME|striptags|e }} {% endblock head_description %} {% block meta_tags_in_head %} {{ super() }} {% from '_includes/_defaults.html' import FEATURED_IMAGE, TAGS_URL with context %} {% if FEATURED_IMAGE %} {% endif %} {% endblock meta_tags_in_head %} {% block feed_links %} {{ super() }} {% include '_includes/feeds_tags.html' %} {% endblock feed_links %} {% block content %} {% from '_includes/_defaults.html' import TAGS_URL with context %}
{% for tag, articles in tags|sort %}

{{ tag }}

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