{{/* Display author list. */}}
{{- $taxonomy := "authors" }}
{{ if .Param $taxonomy }}
{{ $link_authors := site.Params.link_authors | default true }}
{{ range $index, $value := (.GetTerms $taxonomy) }}
{{- /* Highlight the author's name? */ -}}
{{- $highlight_name := .Page.Params.highlight_name | default false -}}
{{- if gt $index 0 }}, {{ end -}}
{{- if $link_authors -}}
{{.LinkTitle}}
{{- else -}}
{{ .LinkTitle }}
{{- end -}}
{{- if isset $.Params "author_notes" -}}
{{- with (index $.Params.author_notes $index) -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}