aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/count-feeds.html
blob: b3053e2f4b002887ceae7493cbb4cbd942d3e270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- $author := partial "function-authors-data.html" . -}}
{{- $count := 0 -}}

{{- $feeds := where .Site.Pages "Params.feed" "ne" nil -}}
{{- $authors := where .Site.Pages "Section" $author.user -}}
{{- $filteredPages := $authors | intersect $feeds -}}

{{- range $filteredPages -}}
  {{- $count = add $count 1 -}}
{{- end -}}

{{- print (lang.FormatNumberCustom 0 $count) -}}