2021-04-13 08:21:40 -05:00
|
|
|
{{ define "main" }}
|
|
|
|
{
|
2021-04-13 15:33:49 -05:00
|
|
|
{{ $mscratch := newScratch }}
|
|
|
|
{{ $mscratch.Add "articles" slice }}
|
2021-12-25 07:59:08 -06:00
|
|
|
{{ $pages := where .Site.RegularPages "Params.nosearch" "!=" "true" }}
|
|
|
|
{{ range $pages }}
|
2021-04-13 15:33:49 -05:00
|
|
|
{{ $mscratch.Add "articles" (dict
|
|
|
|
"title" .Title
|
|
|
|
"date" (.Date.Format "2006-01-02")
|
2021-06-16 04:08:07 -05:00
|
|
|
"tags" (sort (or .Params.tags slice))
|
2022-04-02 10:28:19 -05:00
|
|
|
"summary" (or .Params.description .Summary)
|
2021-04-13 15:33:49 -05:00
|
|
|
"text" (lower .Plain)
|
|
|
|
"link" .Permalink
|
|
|
|
"image" (or .Params.Image "")) }}
|
|
|
|
{{ end }}
|
|
|
|
"pages": {{ $mscratch.Get "articles" | jsonify }}
|
2021-04-13 08:21:40 -05:00
|
|
|
}
|
|
|
|
{{ end }}
|