diff options
Diffstat (limited to 'cl-theme/templates/categories.html')
-rw-r--r-- | cl-theme/templates/categories.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cl-theme/templates/categories.html b/cl-theme/templates/categories.html new file mode 100644 index 0000000..88071f9 --- /dev/null +++ b/cl-theme/templates/categories.html @@ -0,0 +1,16 @@ +{% 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 %} |