blob: fe3d6acf6441b980ad781e71a058d9504c05ba56 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block content %}
<section id="categories">
<h1>Categories for {{ SITENAME }}</h1>
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
</section>
{% endblock %}
|