diff options
author | Justin Mayer <entroP@gmail.com> | 2013-09-17 14:42:25 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-09-17 14:42:25 -0700 |
commit | 3505c594db1bc3fb3830c3682c9e889a37160514 (patch) | |
tree | 2c001342ebe6b9605f4419f0b30589905cb819a9 /monospace/templates/archives.html | |
parent | db7a9fe0efb4eb024d887cf83142bfaf3bfa6d4d (diff) | |
parent | 3197b676fe9e55fdd5b8ded77200117e62543fd2 (diff) | |
download | pelican-themes-3505c594db1bc3fb3830c3682c9e889a37160514.tar.gz |
Merge pull request #144 from lwm/master
Add monospace theme
Diffstat (limited to 'monospace/templates/archives.html')
-rw-r--r-- | monospace/templates/archives.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/monospace/templates/archives.html b/monospace/templates/archives.html new file mode 100644 index 0000000..9425abf --- /dev/null +++ b/monospace/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 %} |