| 123456789101112131415161718192021222324 | {{/* Display author list. */}}{{- $taxonomy := "authors" }}{{ if .Param $taxonomy }}  {{ range $index, $value := (.GetTerms $taxonomy) }}    {{- /* Highlight the author's name? */ -}}    {{- $highlight_name := .Page.Params.highlight_name | default false -}}    {{- if gt $index 0 }}, {{ end -}}    <span {{ if $highlight_name }}class="author-highlighted"{{end}}>      {{/* Effectively check the page's `_build` option as `_build` is not exposed in Hugo's Page object. */}}      {{- if .RelPermalink -}}        <a href="{{.RelPermalink}}">{{.LinkTitle}}</a>      {{- else -}}        {{ .LinkTitle }}      {{- end -}}    </span>    {{- if isset $.Params "author_notes" -}}      {{- with (index $.Params.author_notes $index) -}}        <i class="author-notes fas fa-info-circle" data-toggle="tooltip" title="{{.}}"></i>      {{- end -}}    {{- end -}}  {{- end -}}{{- end -}}
 |