summaryrefslogtreecommitdiff
path: root/theme/templates/tags.html
blob: 681e408eb241820c82776533d5f9ec275b6a87c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 %}