2022-11-13 10:33:32 +00:00
|
|
|
{{- partialCached "page-meta.hugo" . .RelPermalink }}
|
2021-08-31 09:33:22 +00:00
|
|
|
{{- $pages := slice }}
|
|
|
|
{{- range .Site.Pages }}
|
2023-09-21 15:31:39 +00:00
|
|
|
{{- if and .Title .RelPermalink (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableSearchHiddenPages true) ) }}
|
2023-05-19 09:09:05 +00:00
|
|
|
{{- $title := .Title }}
|
|
|
|
{{- if eq .Kind "taxonomy" }}
|
|
|
|
{{- $title = i18n .Data.Plural }}
|
|
|
|
{{- if not $title }}
|
2023-06-18 09:13:33 +00:00
|
|
|
{{- $title = .Data.Plural }}
|
2023-05-19 09:09:05 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- else if eq .Kind "term" }}
|
|
|
|
{{- $title = i18n .Data.Singular }}
|
|
|
|
{{- if not $title }}
|
2023-06-18 09:13:33 +00:00
|
|
|
{{- $title = .Data.Singular }}
|
2023-05-19 09:09:05 +00:00
|
|
|
{{- end }}
|
2023-05-19 16:46:00 +00:00
|
|
|
{{- $title = printf "%s %s %s" $title (default "::" .Site.Params.titleSeparator) .Title }}
|
2023-05-19 09:09:05 +00:00
|
|
|
{{- end }}
|
2023-09-23 22:27:39 +00:00
|
|
|
{{- $pages = $pages | append (dict
|
|
|
|
"uri" (partial "relLangPrettyUglyURL.hugo" (dict "to" .))
|
|
|
|
"title" $title
|
|
|
|
"tags" .Params.tags
|
|
|
|
"breadcrumb" (trim ((partial "breadcrumbs.html" (dict "page" . "dirOnly" true)) | plainify | htmlUnescape) "\n\r\t ")
|
|
|
|
"description" .Description
|
|
|
|
"content" (.Plain | htmlUnescape)
|
|
|
|
) }}
|
2023-05-19 09:09:05 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- end -}}
|
2021-08-31 09:33:22 +00:00
|
|
|
{{- $pages | jsonify (dict "indent" " ") }}
|