web.myco.systems/themes/blowfish/layouts/_default/index.json
brookee f08363cf71
All checks were successful
Hugo / build (push) Successful in 18s
alter file structure, add deployment yaml
2024-02-27 22:18:33 -05:00

13 lines
485 B
JSON

{{- $index := slice -}}
{{- range .Site.Pages -}}
{{- $section := .Site.GetPage "section" .Section -}}
{{- $index = $index | append (dict
"date" (.Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long"))
"title" (.Title | emojify | safeJS)
"section" ($section.Title | emojify | safeJS)
"summary" (.Summary | emojify | safeJS)
"content" (.Plain | emojify | safeJS)
"permalink" .RelPermalink
) -}}
{{- end -}}
{{- $index | jsonify -}}