blob: 9277410f7a146e22e046f6d653d5794ae4104b3c (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - [categories]{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</li>
{% endfor %}
</ul>
{% endblock %}
|