aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/categories.html
blob: fe3d6acf6441b980ad781e71a058d9504c05ba56 (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="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
            {% endfor %}
        </ul>
    </section>
{% endblock %}