{{ $posts := where site.RegularPages "Section" "blog" }} {{ $max := 200 }}
{{ range $posts }} {{ $date := dateFormat "January 2, 2006" .Date }} {{ $auth := .Params.author }} {{ $auths := .Params.authors }}

{{ .Title }}

{{ with $auth }}

{{ .name }}

{{ end }} {{ with $auths }} {{ $numAuths := len . }}

{{ range $idx, $auth := . }} {{ $notLast := ne $numAuths (add $idx 1) }} {{ .name }}{{ if $notLast }}, {{ end }} {{ end }}

{{ end }}

{{ $date }}

{{ .Summary | markdownify }}

{{ end }}