aboutsummaryrefslogtreecommitdiff
path: root/templates/posts.html
diff options
context:
space:
mode:
authorfoswret <foswret@posteo.com>2026-03-21 21:38:23 -0500
committerfoswret <foswret@posteo.com>2026-03-21 21:38:23 -0500
commitd300415652d513a54c214c894e996036d2c999ce (patch)
treef66832112462c1c9f0544ce351fe901a9e3d3740 /templates/posts.html
first commit
Diffstat (limited to 'templates/posts.html')
-rw-r--r--templates/posts.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/posts.html b/templates/posts.html
new file mode 100644
index 0000000..cb6c14b
--- /dev/null
+++ b/templates/posts.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+
+{% block content %}
+<h1 class="title">
+ {{ section.title }}
+</h1>
+<ul>
+ {% for page in section.pages %}
+ <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
+ {% endfor %}
+</ul>
+{% endblock content %}