From fda4f7610388b09182298c1b6f5ed1fcbed0f9d8 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Tue, 15 Aug 2023 10:20:59 -0500 Subject: [PATCH] posts layout override - support new posts path (732c6c1 (move posts from content/post to content/posts, 2023-08-15)) - remove author info - ensure vertical space between entries --- layouts/posts/list.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 layouts/posts/list.html diff --git a/layouts/posts/list.html b/layouts/posts/list.html new file mode 100644 index 0000000..696d607 --- /dev/null +++ b/layouts/posts/list.html @@ -0,0 +1,22 @@ +{{ define "main" }} +
+

{{ .Title | markdownify }}

+ {{ .Content }} +
+ + {{ range .Pages }} +
+
+

{{ .Title | markdownify }}

+ +
+ +
+ {{ .Summary }} +
+
+
+ {{ end }} +{{ end }}