blob: b6d98c2fafbcf8550fcf75d65729488968d55e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block title %}
<title>Categories</title>
{% endblock %}
{% block content %}
<p class="archive_title">[Categories]</p>
<ul>
{% for term in terms %}
<li>
<a href="{{ term.permalink }}">/{{ term.name }}</a>
({{ term.pages | length }})
</li>
{% endfor %}
</ul>
{% endblock content %}
|