summaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
diff options
context:
space:
mode:
authorforever2k38 <forever2k38@noreply.codeberg.org>2026-09-05 01:34:40 +0200
committerforever2k38 <forever2k38@noreply.codeberg.org>2026-09-05 01:34:40 +0200
commitaa2528adf2e9e7d1d1e8baed2d6fda511a0502d9 (patch)
tree1824ef5dc9ccdda8c0e60e9eedfc39c7aecb286c /layouts/_default/list.html
initial commit
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..c2e7875
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+ {{ range .Pages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{ end }}
+{{ end }}