From e2d1d421e422790b956e57e40522630221eae02c Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Tue, 11 Mar 2025 03:04:37 +0100 Subject: got website working; final touches are needed --- templates/thoughts.html.j2 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'templates/thoughts.html.j2') diff --git a/templates/thoughts.html.j2 b/templates/thoughts.html.j2 index 69734fa..fa950e7 100644 --- a/templates/thoughts.html.j2 +++ b/templates/thoughts.html.j2 @@ -1,6 +1,12 @@ {% extends "template.html.j2" %} {% block content %} -
- {{ content|safe }} -
+ {% for category_name, thoughts in tree.items() %} +

{{category_name}}

+
+ {% for id_, title, datetime in thoughts %} +
{{title}}
+
{{datetime}}
+ {% endfor %} +
+ {% endfor %} {% endblock %} -- cgit v1.2.3