17 lines
361 B
HTML
17 lines
361 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
|
|
<h1>Categories</h1>
|
|
<p>
|
|
{% if terms %}
|
|
<ul>
|
|
{% for term in terms %}
|
|
<li><a href="{{ term.permalink | safe }}">{{ term.name }}</a> ({{ term.pages | length }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</p>
|
|
</main>
|
|
{% endblock content %}
|