mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
15 lines
No EOL
580 B
HTML
15 lines
No EOL
580 B
HTML
{{- $pages := slice }}
|
|
{{- range .Data.Terms }}
|
|
{{- $count := 0 }}
|
|
{{- range .Pages }}
|
|
{{- $c:=""}}{{/* count pages of term */}}
|
|
{{- if and .Title .RelPermalink (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
|
{{- $count = add $count 1 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if $count }}
|
|
{{- $pages = $pages| append (dict "Title" (default (humanize .Page.Data.Term | strings.Title) .Page.Title) "Page" .Page "Count" $count )}}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $pages = sort $pages ".Title" }}
|
|
{{- return $pages }} |