aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/function-authors-slice.html
blob: fc2555480e7474f0b65f13a83cb9d515e80079a1 (plain)
1
2
3
4
5
6
7
8
9
{{- $authors := slice -}}

{{- range $user := .Site.Author.list -}}
  {{- with $author := index $.Site.Data.authors $user -}}
    {{- $authors = $authors | append $author.user -}}
  {{- end -}}
{{- end -}}

{{- return (uniq $authors) -}}