mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 17:39:57 +00:00
13 lines
335 B
HTML
13 lines
335 B
HTML
{% extends "content.html" %}
|
|
{% block title %}Categories - {{ config.title }}{% endblock %}
|
|
{% block content %}
|
|
<h1>Categories</h1>
|
|
{% if terms %}
|
|
<ul>
|
|
{% for term in terms %}
|
|
<li><a href="{{ term.permalink }}">{{ term.name }}</a> ({{ term.pages | length }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock content %}
|