aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/categories.html
diff options
context:
space:
mode:
authorMatts <s@tuxlite.com>2012-01-25 21:24:32 -0500
committerMatts <s@tuxlite.com>2012-01-25 21:24:32 -0500
commitb543f5d15705f02f7055c2abc1f424b3fb47d71a (patch)
treeb396899920df7dde3597ae53dfce099a2744f7af /tuxlite_tbs/templates/categories.html
parent77eff4701ac0bd7a11728531da319bb99d1dbd4a (diff)
downloadpelican-themes-b543f5d15705f02f7055c2abc1f424b3fb47d71a.zip
pelican-themes-b543f5d15705f02f7055c2abc1f424b3fb47d71a.tar.gz
pelican-themes-b543f5d15705f02f7055c2abc1f424b3fb47d71a.tar.bz2
Added tuxlite theme, which is inspired by the original bootstrap theme.
Built using twitter bootstrap v2.0, with responsive layout.
Diffstat (limited to 'tuxlite_tbs/templates/categories.html')
-rw-r--r--tuxlite_tbs/templates/categories.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/tuxlite_tbs/templates/categories.html b/tuxlite_tbs/templates/categories.html
new file mode 100644
index 0000000..c96774d
--- /dev/null
+++ b/tuxlite_tbs/templates/categories.html
@@ -0,0 +1,10 @@
+{% 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 %}