2023-07-24 12:02:51 +02:00
|
|
|
{{ 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 }}
|
2023-07-24 12:02:51 +02:00
|
|
|
{{ else }}
|
2023-07-29 13:16:25 +02:00
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
2023-07-24 12:02:51 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|