aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/tags.html')
-rwxr-xr-xtheme/templates/tags.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/theme/templates/tags.html b/theme/templates/tags.html
new file mode 100755
index 0000000..681e408
--- /dev/null
+++ b/theme/templates/tags.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Mots-clés{% endblock %}
+
+{% block content %}
+<h2 class="page_title">Liste des mots-clés</h2>
+<ul id="tag_list">
+{% for tag, articles in tags %}
+<li><a href="{{SITEURL}}/{{tag.url}}">{{ tag }}</a> ({{ articles|count }})
+</li>
+{% endfor %}
+</ul>
+{% endblock %}