From 164c306795577ec7667d338c28a7544bbb8c241b Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 30 May 2020 20:07:21 +0200 Subject: et up baseic structure for homepage/blog with Zola --- templates/page.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 templates/page.html (limited to 'templates/page.html') diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..56317a7 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +{% block content %} +
+

{{ page.title }}

+
+ + Publisert: {{ page.date }} + {% if page.author %}av {{ page.author }}{% endif %} + + + Merket: {{ page.taxonomies['tags'] | join(sep=", ") }} + +
+ {{ page.content | safe }} +
+{% endblock content %} -- cgit v1.2.3