blob: 8c13f2306cc114af3c1921f466e12eb1f9df9a28 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block content %}
<header>
<h3>Categories</h3>
</header>
<article>
<div id="article_text">
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
</div>
</article>
<footer>
<a href="{{ SITEURL }}/" class="button_accent">&larr; Index</a>
</footer>
{% endblock %}