mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
8 lines
No EOL
401 B
Go Template
8 lines
No EOL
401 B
Go Template
{{- $pages := slice }}
|
|
{{- range .Pages }}
|
|
{{- if and .Title .RelPermalink (or (ne .Site.Params.disableTagHiddenPages true) (not (partialCached "_relearn/pageIsHiddenSelfOrAncestor.gotmpl" (dict "page" . "to" .Site.Home) .Path .Site.Home.Path) ) ) }}
|
|
{{- $pages = $pages | append (dict "Title" .Title "Page" . )}}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $pages = sort $pages ".Title" }}
|
|
{{- return $pages }} |