diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-12 02:06:41 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-12 02:06:41 +0100 |
commit | 5591d977998a189573e8f780a5270ab81bb56ddc (patch) | |
tree | 16188b30ea414fb556b024aa20a4b918b1d61fbc /templates/archive.html | |
download | kyblo-5591d977998a189573e8f780a5270ab81bb56ddc.tar.xz |
Initial commit
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'templates/archive.html')
-rw-r--r-- | templates/archive.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/archive.html b/templates/archive.html new file mode 100644 index 0000000..506e899 --- /dev/null +++ b/templates/archive.html @@ -0,0 +1,9 @@ +{% extends 'layout.html' %} + +{% block content %} +<ul id="archive-list"> +{% for entry in entries %} +<li>{{ entry['date'] }} — <a href="{{ entry['file'] }}.html">{{ entry['title'] }}</a></li> +{% endfor %} +</ul> +{% endblock %} |