aboutsummaryrefslogtreecommitdiffstats
path: root/aboutwilson/templates/categories.html
diff options
context:
space:
mode:
authorKura <kura@kura.io>2014-08-13 13:53:13 +0100
committerKura <kura@kura.io>2014-08-13 13:53:13 +0100
commita928687830876af8c919606bae47195af65bc82d (patch)
treed2c21b808e1244f010396b5f40d57f66b9036564 /aboutwilson/templates/categories.html
parentd977b524fddbeddd06374c85a070c54110c76a14 (diff)
parentd404e2fe5b8c57c473c6250b8decbf5ac5b45e64 (diff)
downloadpelican-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.html11
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 %}