You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {{- $scratch := newScratch -}}
- {{- $scratch.Add "index" slice -}}
- {{- range .Site.RegularPages -}}
- {{- if ne .Params.noindex true -}}
- {{- $scratch.Add "index" (dict "title" .Title "tags" .Params.tags "categories" .Params.categories "contents" .Plain "url" .RelPermalink "summary" .Summary) -}}
- {{- end -}}
- {{- end -}}
- {{- $scratch.Get "index" | jsonify -}}
|