aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/categories.html
blob: 2e1d52343b913c0a67d44662ce0f37538e4eeb1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %}

{% block content %}
    <section id="categories">
        <h1>Categories for {{ SITENAME }}</h1>
        <ul>
            {% for category, articles in categories %}
                <li><a href="{{ category.url }}">{{ category }}</a></li>
            {% endfor %}
        </ul>
    </section>
{% endblock %}