flex/templates/categories.html
Alexandre Vicenzi 244807c8bb Add extra space.
2015-07-21 00:53:19 -03:00

17 lines
403 B
HTML

{% extends "base.html" %}
{% block title %} – Categories{% endblock %}
{% block content %}
<article>
<header>
<h2>Categories</h2>
</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 %}