blob: 4298c70853a6e8d2c2f79b50db18d25bd943413e (
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 class="line-spacer">
<a href="{{ page.permalink }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
{% endblock content %}
<!--
vim:sw=2
-->
|