diff options
Diffstat (limited to 'aboutwilson/templates/categories.html')
-rw-r--r-- | aboutwilson/templates/categories.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/aboutwilson/templates/categories.html b/aboutwilson/templates/categories.html new file mode 100644 index 0000000..33fb24b --- /dev/null +++ b/aboutwilson/templates/categories.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block description %}The Categories page lists all categories used to classify the posts. Each post is categorized by a category helping readers find out easily what they are looking for.{% endblock %} +{% block title %}Categories — {{ SITENAME }}{% endblock %} +{% block content %} +<h1>Categories</h1> +<ul> +{% for category, articles in categories %} + <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</li> +{% endfor %} +</ul> +{% endblock %} |