cl/cl-theme/templates/categories.html
2019-11-22 15:12:22 -05:00

17 lines
334 B
HTML

{% extends "base.html" %}
{% block head %}
{% block title %}
<title>{{ SITENAME }}</title>
{% endblock %}
{{ super() }}
{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}