aboutsummaryrefslogtreecommitdiffstats
path: root/lightweight/templates/tags.html
blob: a5d5f9ea350e7cc11bcc9b579d091dc93bf008c5 (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.url}}">{{ tag }}</a></h3></li>
{% endfor %}
</ul>
{% endblock %}