summaryrefslogtreecommitdiff
path: root/templates/section.html
diff options
context:
space:
mode:
authordevels <devels@tuta.com>2026-09-04 20:59:23 +0100
committerdevels <devels@tuta.com>2026-09-04 20:59:23 +0100
commitd45551a628cb51fed0dac9efe089aa223cabb196 (patch)
tree8224085dc93052367d2ca8ef5d0fe41b2bc21489 /templates/section.html
downloadsite-d45551a628cb51fed0dac9efe089aa223cabb196.tar.gz
site-d45551a628cb51fed0dac9efe089aa223cabb196.zip
initial commit
Diffstat (limited to 'templates/section.html')
-rw-r--r--templates/section.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/section.html b/templates/section.html
new file mode 100644
index 0000000..cae39d3
--- /dev/null
+++ b/templates/section.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block content %}
+ {{ section.content | safe }}
+ <ul>
+ {% for post in section.pages %}
+ <li><a href="{{ post.permalink }}">{{ post.title }} -- {{ post.date }}</a></li>
+ {% endfor %}
+ </ul>
+{% endblock %}