1
0
mirror of https://github.com/avitex/avitex.github.io synced 2024-09-28 10:49:58 +00:00
1bit.pw/templates/blog/categories/list.html

13 lines
335 B
HTML
Raw Normal View History

2020-04-11 17:22:25 +00:00
{% extends "content.html" %}
2020-04-14 02:23:38 +00:00
{% block title %}Categories - {{ config.title }}{% endblock %}
2018-08-22 13:30:07 +00:00
{% 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 %}