{{ 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 := where .Site.RegularPages ".Params.hidden" "!=" "true" -}} {{ $authors = $authors | append $data.Type }} {{- end -}} {{ $authors = uniq $authors }} {{ range $author := $authors }} {{ $data := index $.Site.Data.authors $author | default "default" }} {{ partial "author-card.html" (dict "Data" $data) }} {{ end }} {{ end }} {{ define "right" }} {{- partial "navigator-right-default.html" . -}} {{ end }}