From d9ae9febd9668f89c8694b66d7a0323027d416b2 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Tue, 14 Oct 2014 01:22:31 +0200 Subject: redo website using bupa, ReST, and jinja templates --- src/templates/journal.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/templates/journal.html (limited to 'src/templates/journal.html') diff --git a/src/templates/journal.html b/src/templates/journal.html new file mode 100644 index 0000000..0269d2e --- /dev/null +++ b/src/templates/journal.html @@ -0,0 +1,33 @@ +{% extends 'layout.html' %} + +{% block content %} +
+{% include 'nav.html' %} +

The lost journal

+
+ +{% for entry in entries %} +
+ +

{{ entry.title }}

+ +
+ Published on + + + +
+ + {{ entry.body }} +
+{% endfor %} +{% endblock content %} -- cgit v1.2.3-54-g00ecf