aboutsummaryrefslogtreecommitdiffstats
path: root/dev-random/templates/tags.html
blob: b95d40165d4248a3be18ab3138f20885f9ef453a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block title %}{{ super() }} — Mots-clés{% endblock title %}

{%- block content %}
    <section class="content">
      <h1>Mots-clés</h1>
      <ul id="tagslist">
      {% for tag in tag_cloud %}
        <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li>
      {% endfor %}
      </ul>
    </section>
{% endblock content -%}