blob: c96774d2c438805641dee9a6a64a2587b34906f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{% 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 %}
|