bidouille/templates/tags.html

12 lines
368 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - Mots clés{% endblock %}
{% block content %}
<h2>Tous les mots clés <em>(tags)</em> sur {{ SITENAME }}</h2>
<ul>
{% for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}