aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tags/list.html
blob: 9fdee7e220ae06003a7023488b992eeb2c1d1c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "index.html" %}

{% block title %}Tags{% endblock title%}

{% block content %}
<h1>Tags</h1>
<ul>
    {% for term in terms %}
    <li>
        <a href="{{ term.permalink }}">#{{ term.name }}</a>
    </li>
    {% endfor %}
</ul>
{% endblock content %}