Files
sumup/themes/basic/layouts/projects/list.json

12 lines
342 B
JSON

{
"projects": [
{{- range $index, $page := (where .Site.RegularPages "Type" "in" "projects") }}
{{- if $index -}} , {{- end }}
{
"url": {{ .Permalink | jsonify }},
"title": {{ .Title | jsonify }},
"keywords": {{ delimit .Keywords ", " | jsonify }}
}
{{- end }}
]
}