blog/themes/flex/templates/categories.html
2015-10-12 17:19:51 +02:00

18 lines
403 B
HTML

{% extends "base.html" %}
{% block title %} – Categories{% endblock %}
{% block content %}
<article>
<header>
<h1>Categories</h1>
</header>
<div>
<ul class="list">
{% for category, articles in categories|sort %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}