From d46ec1653110c42918bfba4b7f02f52ff79953f5 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Sun, 22 Jan 2023 01:19:41 -0800 Subject: [PATCH] Format template --- layouts/partials/paige/func-authors.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/layouts/partials/paige/func-authors.html b/layouts/partials/paige/func-authors.html index 3983f70c..91464398 100644 --- a/layouts/partials/paige/func-authors.html +++ b/layouts/partials/paige/func-authors.html @@ -1,6 +1,8 @@ {{ $result := "" }} + {{ if .Params.authors }} {{ $names := slice }} + {{ range .Params.authors }} {{ if eq (printf "%T" .) "string" }} {{ $names = $names | append (index site.Params.authors .).name }} @@ -12,14 +14,18 @@ {{ end }} {{ end }} {{ end }} + {{ $result = delimit $names ", " }} {{ else if .Site.Params.authors }} {{ $names := slice }} + {{ range $k, $v := .Site.Params.authors }} {{ if eq $v.default true }} {{ $names = $names | append $v.name }} {{ end }} {{ end }} + {{ $result = delimit $names ", " }} {{ end }} + {{ return $result }}