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

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

<!--
vim:sw=2
-->