aboutsummaryrefslogtreecommitdiffstats
path: root/SoMA/templates/archives.html
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2014-01-07 09:56:21 -0800
committerJustin Mayer <entroP@gmail.com>2014-01-07 09:56:21 -0800
commit6552e3bedb3489d58cd1f97917243eee02b813ee (patch)
tree970dd45c1a9912399fb0a1fe40dbf326948a0f0b /SoMA/templates/archives.html
parent91663921bb271183b51de9a6543de8f912bd7c65 (diff)
parent8468e45a55634a0fccc1ac8a33d9cdd3cdc023fd (diff)
downloadpelican-themes-6552e3bedb3489d58cd1f97917243eee02b813ee.tar.gz
Merge pull request #185 from atifh/master
Add SoMA theme
Diffstat (limited to 'SoMA/templates/archives.html')
-rw-r--r--SoMA/templates/archives.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/SoMA/templates/archives.html b/SoMA/templates/archives.html
new file mode 100644
index 0000000..f678494
--- /dev/null
+++ b/SoMA/templates/archives.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block content %}
+<section id="content" class="body">
+<h1>Archives for {{ SITENAME }}</h1>
+
+<dl>
+{% for article in dates %}
+ <dt>{{ article.locale_date }}</dt>
+ <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+{% endfor %}
+</dl>
+</section>
+{% endblock %}