gcg-website/layouts/partials/authors.html

8 lines
273 B
HTML
Raw Normal View History

{{ range $index, $elements := where (where .Site.RegularPages "Type" "author") "File.BaseFileName" "in" .author }}
{{ if ne $index 0 }}, {{ end }}
{{ if .Params.simplified }}
2023-07-29 13:16:25 +02:00
{{ .Title }}
{{ else }}
2023-07-29 13:16:25 +02:00
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}
{{ end }}