mirror of
https://github.com/McShelby/hugo-theme-relearn
synced 2025-04-30 19:18:48 +08:00
because achretypes caching was unreliable when the whole page was used; Hugo bug or is it just me?
9 lines
473 B
JavaScript
9 lines
473 B
JavaScript
{{- partialCached "page-meta.hugo" . .RelPermalink }}
|
|
{{- $pages := slice }}
|
|
{{- range .Site.Pages }}
|
|
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableSearchHiddenPages true) ) }}
|
|
{{- $pages = $pages | append (dict "uri" .RelPermalink "title" .Title "tags" .Params.tags "description" .Description "content" (.Plain | htmlUnescape)) }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
var relearn_search_index = {{ $pages | jsonify (dict "indent" " ") }}
|