diff options
author | Justin Mayer <entroP@gmail.com> | 2013-09-12 23:09:49 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-09-12 23:09:49 -0700 |
commit | a217f4239e87d4d17c518e0ecdb7cd20a6752f12 (patch) | |
tree | d105653aace2d690f01eea6d8eae2ce36341d3ec /pelican-bootstrap3/templates/archives.html | |
parent | b062b010425416601f9b623136d42cb88db09dc5 (diff) | |
parent | 8fc2dfd7e8fe863b9536f7b78a78856b97ed22b6 (diff) | |
download | pelican-themes-a217f4239e87d4d17c518e0ecdb7cd20a6752f12.tar.gz |
Merge pull request #127 from DandyDev/master
Added pelican-bootstrap3 theme
Diffstat (limited to 'pelican-bootstrap3/templates/archives.html')
-rw-r--r-- | pelican-bootstrap3/templates/archives.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/archives.html b/pelican-bootstrap3/templates/archives.html new file mode 100644 index 0000000..0f61031 --- /dev/null +++ b/pelican-bootstrap3/templates/archives.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block content %} + <section id="content"> + <h1>Archives for {{ SITENAME }}</h1> + + <dl> + {% for article in dates %} + <dt>{{ article.locale_date }}</dt> + <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd> + {% endfor %} + </dl> + </section> +{% endblock %} |