summaryrefslogtreecommitdiff
path: root/layouts/single.html
diff options
context:
space:
mode:
authorArne Rief <riearn@proton.me>2026-01-09 12:24:05 +0100
committerArne Rief <riearn@proton.me>2026-01-09 12:24:05 +0100
commitf8541ef965ca22e746b523eb418e47cb4f78f2d8 (patch)
tree49e1540ed42595a44196817eadf97337587a2aea /layouts/single.html
parent038054b8206a9c25e84adeb0f0f355abd22d6143 (diff)
Upgrade to new template system from Hugo v0.146.0
Diffstat (limited to 'layouts/single.html')
-rw-r--r--layouts/single.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layouts/single.html b/layouts/single.html
new file mode 100644
index 0000000..e1728d3
--- /dev/null
+++ b/layouts/single.html
@@ -0,0 +1,23 @@
+{{- define "main" }}
+<article class="post">
+ <header class="post__header">
+ <h1 class="post__headline">
+ {{ .Title }}
+ </h1>
+ {{- with .Date }}
+ <time datetime="{{ .Format "2006-01-02T15:04:05Z07:00" }}" class="post__publish-date">
+ {{ . | time.Format ":date_medium" }}
+ </time>
+ {{- end }}
+ </header>
+
+ <div class="post__content">
+ {{ .Content }}
+ </div>
+
+ <footer class="post__footer">
+ {{ partial "single/tags" . }}
+ {{ partial "single/next-prev" . }}
+ </footer>
+</article>
+{{- end }}