diff options
author | Kura <kura@kura.io> | 2014-08-13 13:53:13 +0100 |
---|---|---|
committer | Kura <kura@kura.io> | 2014-08-13 13:53:13 +0100 |
commit | a928687830876af8c919606bae47195af65bc82d (patch) | |
tree | d2c21b808e1244f010396b5f40d57f66b9036564 /aboutwilson/templates/categories.html | |
parent | d977b524fddbeddd06374c85a070c54110c76a14 (diff) | |
parent | d404e2fe5b8c57c473c6250b8decbf5ac5b45e64 (diff) | |
download | pelican-themes-a928687830876af8c919606bae47195af65bc82d.tar.gz |
Merge pull request #241 from wilsonfreitas/master
Added new theme aboutwilson
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 %} |