summaryrefslogtreecommitdiff
path: root/pelican/themes/notmyidea/templates/categories.html
blob: 07f6290a4c059b372967295ff9a0c854450912c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

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

{% block content %}

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

{% endblock %}