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

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

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