{{ define "title" }}Authors — {{ end }} {{ define "description" }}This page contains a list of all authors — {{ end }} {{ define "styles" }} {{ end }} {{ define "middle" }} {{ partial "navigator-middle.html" (dict "Title" "Authors" "Subtitle" (partial "count-authors.html" .) "Icon" "arrow-left" "IconLabel" "Back" "Href" "/" "Id" "back" "Context" . ) }} {{ $authors := partial "function-authors-slice.html" . }} {{- range $author := shuffle $authors -}} {{ $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 }} {{ define "right" }} {{- partial "navigator-right.html" . -}} {{ end }}