diff options
author | Mathieu Agopian <mathieu.agopian@gmail.com> | 2012-03-03 09:41:45 +0100 |
---|---|---|
committer | Mathieu Agopian <mathieu.agopian@gmail.com> | 2012-03-03 09:41:45 +0100 |
commit | 1bcb149edda11531986d0db855529ef123a69d18 (patch) | |
tree | 847a6774793b26b1390feec1aaffc86d8ae3f28a /mnmlist/templates/categories.html | |
parent | 7c039820c24f7687498e6d3b88e00ccbd45ac1fa (diff) | |
download | pelican-themes-1bcb149edda11531986d0db855529ef123a69d18.zip pelican-themes-1bcb149edda11531986d0db855529ef123a69d18.tar.gz pelican-themes-1bcb149edda11531986d0db855529ef123a69d18.tar.bz2 |
mnmlist theme
Diffstat (limited to 'mnmlist/templates/categories.html')
-rw-r--r-- | mnmlist/templates/categories.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mnmlist/templates/categories.html b/mnmlist/templates/categories.html new file mode 100644 index 0000000..78362e4 --- /dev/null +++ b/mnmlist/templates/categories.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block content %} +<ul> +{% for category, articles in categories %} + <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</a></li> +{% endfor %} +</ul> +{% endblock %} |