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

{{ $count := 0 }}

{{ range .Site.Pages }}
  {{ if .Params.feed }}
   {{ if eq .Type $author }}
    {{ $count = add $count 1 }}
   {{ end }}
  {{ end }}
{{ end }}

{{ print (lang.FormatNumberCustom 0 $count) " " "Messages" }}