{{ 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 := slice }} {{- range $index, $data := .Site.Data -}} {{- $authors = $authors | append $data.user -}} {{- end -}} {{- range $author := (shuffle (uniq $authors)) -}} {{ $data := index $.Site.Data $author | default "default" }} {{ partial "author-card.html" (dict "Data" $data) }} {{ end }} {{ end }} {{ define "right" }} {{- partial "navigator-right-default.html" . -}} {{ end }}