diff options
Diffstat (limited to 'bootstrap/templates/categories.html')
-rw-r--r-- | bootstrap/templates/categories.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bootstrap/templates/categories.html b/bootstrap/templates/categories.html new file mode 100644 index 0000000..36b57bc --- /dev/null +++ b/bootstrap/templates/categories.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block title %}{{ SITENAME }} <small>[categories]</small>{% endblock %} +{% block content %} +<ul> +{% for category, articles in categories %} + <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</li> +{% endfor %} +</ul> +{% endblock %} |