summaryrefslogtreecommitdiff
path: root/templates/tags/single.html
blob: a08695c1cac5ba7254e46a674e58e62ab7ac009f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block title %}
{{ term.name }} - {{ config.title }}
{% endblock %}

{% block content %}

<div class="article-header">
    <h1>{{ term.name }}</h1>
</div>
<div class="typography">
    <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>
</div>

{% endblock %}