Files
Portfolio_Site/layouts/_default/index.json
SauravDhakal 3a1d508c65
Some checks failed
Deploy Hugo Site / deploy (push) Has been cancelled
fix: Search
2026-04-01 12:11:17 +05:45

8 lines
377 B
JSON

{{- $.Scratch.Add "index" slice -}}
{{- range site.RegularPages -}}
{{- if and (not .Params.searchHidden) (ne .Layout `archives`) (ne .Layout `search`) }}
{{- $.Scratch.Add "index" (dict "title" .Title "content" .Plain "permalink" .Permalink "summary" .Summary "date" (.Date.Format "Jan 2, 2006")) -}}
{{- end }}
{{- end -}}
{{- $.Scratch.Get "index" | jsonify -}}