mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-02-06 20:03:31 +08:00
13 lines
316 B
JSON
13 lines
316 B
JSON
|
{{- $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections -}}
|
||
|
{{- $result := slice -}}
|
||
|
|
||
|
{{- range $pages -}}
|
||
|
{{- $data := dict
|
||
|
"title" .Title
|
||
|
"content" (.Plain)
|
||
|
"id" .File.UniqueID
|
||
|
-}}
|
||
|
{{- $result = $result | append $data -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{ jsonify $result }}
|