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.
19 lines
458 B
19 lines
458 B
{% extends "index.html" %} |
|
|
|
{% block content %} |
|
{% block header %} |
|
{{ super() }} |
|
{% endblock header %} |
|
|
|
<h1>Categories</h1> |
|
|
|
{% if categories %} |
|
<ul> |
|
{% for category in categories %} |
|
<li> |
|
<a href="{{ category.permalink }}">{{ category.name }}</a>({{ category.pages | length }}) |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
{% endif %} |
|
{% endblock content %}
|
|
|