page_metadata_authors.html 587 B

12345678910111213141516171819
  1. {{/* Display author list. */}}
  2. {{- $taxonomy := "authors" }}
  3. {{ if .Param $taxonomy }}
  4. {{ $link_authors := site.Params.link_authors | default true }}
  5. {{ range $index, $value := (.GetTerms $taxonomy) }}
  6. {{- /* Check if a profile was created for this user. */ -}}
  7. {{- $profile_page := isset .Page.Params "superuser" -}}
  8. {{- if gt $index 0 }}, {{ end -}}
  9. <span>
  10. {{- if and $profile_page $link_authors -}}
  11. <a href="{{.RelPermalink}}">{{ .LinkTitle }}</a>
  12. {{- else -}}
  13. {{ .LinkTitle }}
  14. {{- end -}}
  15. </span>
  16. {{- end -}}
  17. {{- end -}}