mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2025-02-06 18:35:32 -05:00
![Aditya Telange](/assets/img/avatar_default.png)
- The site function provides global access to the same data as the .Site page method. - Current context (`.`) is never considered.
8 lines
341 B
JSON
8 lines
341 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) -}}
|
|
{{- end }}
|
|
{{- end -}}
|
|
{{- $.Scratch.Get "index" | jsonify -}}
|