bunteshaus.de/themes/buha/layouts/_default/index.json

9 lines
627 B
JSON
Raw Normal View History

2022-06-16 13:46:25 +02:00
[ {{- $i := 0 -}}
2022-06-22 18:36:10 +02:00
{{- range where .Site.RegularPages "Section" "eq" "posts" -}}
2022-06-16 13:46:25 +02:00
{{- if not .Params.noSearch -}}
{{- if gt $i 0 }},{{ end -}}
{"date":"{{ .Date.Unix }}", "url":"{{ .Permalink }}", "title":{{ .Title | jsonify }}, "summary":{{ with .Description}}{{ . | plainify | jsonify }}{{ else }}{{ .Summary | plainify | jsonify }}{{ end }}, "content":{{ .Content | plainify | jsonify }},"tags":[ {{- $t := 0 }}{{- range .Param "tags" -}}{{ if gt $t 0 }},{{ end }}{{ . | jsonify }}{{ $t = add $t 1 }}{{ end -}} ], "section": {{ .Section | jsonify -}} }
{{- $i = add $i 1 -}}
{{- end -}}
{{- end -}} ]