blob: 497b4cb81bbe30b534e770e3f67640bc31f01ce4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block title %}#{{ term.name }}{% endblock title %}
{% block content %}
<h1 class="title">
#{{ term.name }}
</h1>
<ul>
{% for page in term.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> ({{ page.date }})</li>
{% endfor %}
</ul>
{% endblock content %}
|