From dbfe642280c043e129752c488aa8c14159071281 Mon Sep 17 00:00:00 2001 From: Alexandre Jesus Date: Fri, 26 Aug 2022 13:10:42 +0100 Subject: Initial site, and first blog post --- templates/blog.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/blog.html (limited to 'templates/blog.html') diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..147ac2b --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} +

{{ section.title }}

+
+

Feed

+ {% for page in section.pages %} +

+ {{ page.date }} {{ page.title }} +

+ {% endfor %} +
+{% endblock content %} -- cgit v1.2.3