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

{% block content %}
  <h1>Tag: #{{ term.name }}</h1>
  <ul>
    {% for page in term.pages %}
    <li>
      <a href="{{ page.permalink }}">{{ page.title }}</a>
    </li>
    {% endfor %}
  </ul>
{% endblock content %}

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