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

{{- $likes := where .Site.RegularPages ".Params.liked" true -}}
{{- $authors := where .Site.RegularPages "Section" $author.user -}}
{{- $filteredPages := $authors | intersect $likes -}}

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

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