aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/home.authors.html
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-09-09 19:12:32 -0400
committertdro <tdro@noreply.example.com>2023-09-09 19:12:32 -0400
commit14fca032762fc1c92c3e6798aa1c628b1151d443 (patch)
tree8a0c52b33d5087d035cb777f6fe234a8cc276a5c /themes/default/layouts/_default/home.authors.html
parenta625a207790a7d95357f8f16bb936e82464674d6 (diff)
downloadcanory-14fca032762fc1c92c3e6798aa1c628b1151d443.tar.gz
canory-14fca032762fc1c92c3e6798aa1c628b1151d443.tar.bz2
canory-14fca032762fc1c92c3e6798aa1c628b1151d443.zip
themes/default/layouts/_default/baseof: More granularity with header
Diffstat (limited to 'themes/default/layouts/_default/home.authors.html')
-rw-r--r--themes/default/layouts/_default/home.authors.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/themes/default/layouts/_default/home.authors.html b/themes/default/layouts/_default/home.authors.html
index 17dcf59..ee24585 100644
--- a/themes/default/layouts/_default/home.authors.html
+++ b/themes/default/layouts/_default/home.authors.html
@@ -1,16 +1,13 @@
-{{ define "title" }}Authors &mdash; {{ end }}
-{{ define "description" }}This page contains a list of all authors &mdash; {{ end }}
-{{ define "styles" }}
+{{- define "title" -}}Authors &mdash; {{- end -}}
+{{- define "description" -}}This page contains a list of all authors &mdash; {{- end -}}
+{{- define "styles" -}}
<style>
{{ partial "navigator.css.html" (dict "Link" "/authors/") | safeCSS }}
</style>
-{{ end }}
+{{- end -}}
-{{ define "middle" }}
-
- {{- partial "generate-authors" . -}}
-
- {{ partial "navigator-middle.html"
+{{- define "header" -}}
+ {{- partial "navigator-middle.html"
(dict
"Title" "Authors"
"Subtitle" (partial "count-authors.html" .)
@@ -20,22 +17,25 @@
"Id" "back"
"Context" .
)
- }}
+ -}}
+{{- end -}}
- {{ $authors := partial "function-authors-slice.html" . }}
+{{- define "middle" -}}
+ {{- partial "generate-authors" . -}}
+
+ {{- $authors := partial "function-authors-slice.html" . -}}
{{- range $author := $authors -}}
- {{ $data := index $.Site.Data $author | default "default" }}
+ {{- $data := index $.Site.Data $author | default "default" -}}
{{- $date := (index (first 1 (where $.Site.Pages.ByDate.Reverse "Section" $author)) 0).Date -}}
{{- partial "author-card.html" (dict
"Data" $data
"Date" $date
)
-}}
- {{ end }}
-
-{{ end }}
+ {{- end -}}
+{{- end -}}
-{{ define "right" }}
+{{- define "right" -}}
{{- partial "navigator-right.html" . -}}
-{{ end }}
+{{- end -}}