{{ .ReadingTime }} min read {{ if eq .Params.weight 1 }} Pinned {{ end }} {{ $ac := 0 }} {{ with .Params.authors }} {{ range sort . }} {{ $author := index $.Site.Data.authors . }} {{ with $.Site.GetPage (printf "/authors/%s" . | urlize) }} {{ if eq $ac 0 }} {{ template "post-author" dict "name" $author.name "page" . }} {{ else }} {{ template "post-author" dict "name" $author.name "page" . }} {{ end }} {{ end }} {{ $ac = (add $ac 1) }} {{ end }} {{ end }} {{ $tc := 0 }} {{ with .Params.tags }} {{ range sort . }} {{ $name := . }} {{ with $.Site.GetPage (printf "/tags/%s" $name | urlize) }} {{ if eq $tc 0 }} {{ template "post-tag" dict "name" $name "page" . }} {{ else }} {{ template "post-tag" dict "name" $name "page" . }} {{ end }} {{ end }} {{ $tc = (add $tc 1) }} {{ end }} {{ end }} {{ define "post-tag" }} {{ .name }} {{ end }} {{ define "post-author" }} {{ .name }} {{ end }}