From edf690072e871a3e6acd84b8e9fb84483fdebdc2 Mon Sep 17 00:00:00 2001 From: Oscar Najera Date: Fri, 27 Dec 2024 04:01:34 +0100 Subject: Track author taxonomy --- layouts/_default/author.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 layouts/_default/author.html (limited to 'layouts/_default/author.html') diff --git a/layouts/_default/author.html b/layouts/_default/author.html new file mode 100644 index 0000000..1179500 --- /dev/null +++ b/layouts/_default/author.html @@ -0,0 +1,26 @@ +{{ define "hero" }} + {{ partial "hero.html" . }} +{{ end }} +{{ define "main" }} + {{- $sectionDelimiter := "" -}} + {{- $rawContentSections := split .RawContent $sectionDelimiter -}} + {{ range $rawContentSections }} +
+
+ {{ . | markdownify }} +
+
+ {{ end }} + + +
+
+ {{ range .Pages.GroupBy "Section" "asc" }} +

{{ .Key }} {{ . }}

+ {{ range .Pages }} + {{ partial "post.html" . }} + {{ end }} + {{ end }} +
+
+{{ end }} -- cgit v1.2.3