diff options
author | Massimo Santini <massimo.santini@gmail.com> | 2011-12-05 23:43:04 +0100 |
---|---|---|
committer | Massimo Santini <massimo.santini@gmail.com> | 2011-12-05 23:43:04 +0100 |
commit | dc67ee39fcfc6ae8cbcc56fffd39242b839f8cd3 (patch) | |
tree | 66b96f17911a0f2142515162d7ad38ec0b9b3b28 /bootstrap/templates/categories.html | |
parent | 28bc815799239f17f896b3b64929a0356fd090db (diff) | |
download | pelican-themes-dc67ee39fcfc6ae8cbcc56fffd39242b839f8cd3.tar.gz |
A new theme based on Bootstrap from Twitter
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 %} |