aboutsummaryrefslogtreecommitdiffstats
path: root/dev-random/templates/tags.html
blob: 45b883b76f4024e163f26b5dc767ab886adc74ab (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 id="page-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 -%}