aboutsummaryrefslogblamecommitdiffstats
path: root/bricks/templates/categories.html
blob: d5b0c835378d36a8ec283e21f59139bcd5df7884 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                                     
{% extends "base.html" %}

{% block title %}{{ SITENAME }} - Categories {% endblock %}



{% block content %}
    <h1>Categories for {{ SITENAME }}</h1>
    <ul class="tag-list">
    {%- for category, articles in categories|sort %}
        <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
    {% endfor %}
    </ul>
{% endblock %}

{% block footer %}
{% include 'credits.html' %}
{% endblock %}