aboutsummaryrefslogtreecommitdiffstats
path: root/lightweight/templates/tags.html
blob: 60ac7dbba54481c0a079d2bdb91ac7050eca33f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% 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><h3><a href="{{SITEURL}}/tag/{{tag}}.html">{{ tag }}</a></h3></li>
{% endfor %}
</ul>
{% endblock %}