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

{% block title %}
<title>{{ term.name }} | {{ config.title }}</title>
{% endblock %}

{% block content %}
<p class="archive_title">[Category: {{ term.name }}]</p>

{% for page in term.pages %}
<p>
  <div class="date">
    {{ page.date }}
  </div>
  <div class="archive_title">
    <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
  </div>
</p>
{% endfor %}

{% endblock content %}