{{ define "main" }} {{ .Scratch.Set "IsSingle" true }}

Search


{{ $p := slice }} {{ range (where .Site.RegularPages "Section" "==" "post") }} {{ $.Scratch.Set "image" .RelPermalink }} {{ $.Scratch.Add "image" (index .Params.images 0) }} {{ $post := dict "link" .RelPermalink "author" (index .Params.authors 0) "tags" .Params.tags "title" .Title "date" (.Params.date.Format "January 2, 2006") "image" ($.Scratch.Get "image") "content" (substr .Plain 0 200) -}} {{ $p = $p | append $post -}} {{ end }} {{ $p | jsonify }}
{{ end }}