aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/author-list.html
blob: 37e3222552b74a62e59952526e5b13f0e12f87ab (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- $authors := partial "function-authors-slice.html" . -}}

<author-list>
  <h1>Authors</h1>
  <aside>
    {{- range $author := first 3 (shuffle $authors) -}}
      {{ $data := index $.Site.Data $author | default "default" }}
      {{ partial "author-card.html" (dict "Data" $data) }}
    {{ end }}
  </aside>
</author-list>