You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
432 B
20 lines
432 B
7 years ago
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% block header %}
|
||
|
{{ super() }}
|
||
|
{% endblock header %}
|
||
|
|
||
|
<h1>Categories</h1>
|
||
|
|
||
6 years ago
|
{% if terms %}
|
||
7 years ago
|
<ul>
|
||
6 years ago
|
{% for term in terms %}
|
||
7 years ago
|
<li>
|
||
6 years ago
|
<a href="{{ term.permalink }}">{{ term.name }}</a>({{ term.pages | length }})
|
||
7 years ago
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
{% endblock content %}
|