summaryrefslogtreecommitdiff
path: root/templates/taxonomy_single.html
blob: 3a75df801379357af20ddc9012b0a8dc0cff48c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block content %}

<h1>{{ taxonomy.name }}: {{ term.name }}</h1>

<ul>
{% for page in term.pages %}
    <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> - {{ page.date | date(format="%B %-d, %Y") }}</li>
{% endfor %}
</ul>

{% endblock %}