aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/count-feeds.html
blob: cf5418029ae18ffe9b5a332abfbe5109293bd5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ $author :=  partial "author-user.html" . }}
{{ $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" }}