aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/templates/categories.html
blob: 36b57bc3694bb8e986249b64544708f3da1bbd4b (plain) (blame)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block title %}{{ SITENAME }} <small>[categories]</small>{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
	<li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</li>
{% endfor %}
</ul>
{% endblock %}