diff options
author | Scott Kensell <scott.kensell@prezi.com> | 2014-05-18 10:58:08 +0200 |
---|---|---|
committer | Scott Kensell <scott.kensell@prezi.com> | 2014-05-18 10:58:08 +0200 |
commit | 8418dd6cc9d5b3021057bc0187111b4444076cae (patch) | |
tree | 7cab29d6fad25317716116d99e90b01799092ad0 /SoMA2/templates/categories.html | |
parent | aad6ac30fcdb6a6bd03290fa6373da112fadb2f2 (diff) | |
download | pelican-themes-8418dd6cc9d5b3021057bc0187111b4444076cae.tar.gz |
Add my own flavor to SoMA.
Diffstat (limited to 'SoMA2/templates/categories.html')
-rw-r--r-- | SoMA2/templates/categories.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/SoMA2/templates/categories.html b/SoMA2/templates/categories.html new file mode 100644 index 0000000..c520511 --- /dev/null +++ b/SoMA2/templates/categories.html @@ -0,0 +1,7 @@ +{% block content %} +<ul> +{% for category, articles in categories %} + <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li> +{% endfor %} +</ul> +{% endblock %} |