aboutsummaryrefslogtreecommitdiffstats
path: root/bricabrac/templates/categories.html
blob: a3ef6252c37f34f24058cb0b75d2a4f2cb988720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block content %}
<header>
<h1>
<a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> :
<a href="{{ SITEURL }}/archives.html" id="page-title">{{ gettext('catégories') }}</a></h1>
</header>
<section id="content" class="body">
<ul>
{% for category, articles in categories %}
    <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
</section>
{% endblock %}