blob: 7046137799f12048d596cae07f0a1b39d452e4eb [file] [log] [blame]
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block content %}
<article>
<div id="article_text">
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}