aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/section.likes.html
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-06-10 18:16:04 -0400
committertdro <tdro@noreply.example.com>2023-06-10 18:16:04 -0400
commit77f6dfc5b8d98b2d47788988eb4bcf7449f8f782 (patch)
tree584ff99e325cd0585fd63614b111b41a7b18e425 /themes/default/layouts/_default/section.likes.html
parent067038f579efeae47e6a9560313f0e948996c553 (diff)
downloadcanory-77f6dfc5b8d98b2d47788988eb4bcf7449f8f782.tar.gz
canory-77f6dfc5b8d98b2d47788988eb4bcf7449f8f782.tar.bz2
canory-77f6dfc5b8d98b2d47788988eb4bcf7449f8f782.zip
themes/default/layouts/partials/count: Cleanup counters
Diffstat (limited to 'themes/default/layouts/_default/section.likes.html')
-rw-r--r--themes/default/layouts/_default/section.likes.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/themes/default/layouts/_default/section.likes.html b/themes/default/layouts/_default/section.likes.html
index 311cbbb..d85f9a9 100644
--- a/themes/default/layouts/_default/section.likes.html
+++ b/themes/default/layouts/_default/section.likes.html
@@ -18,10 +18,9 @@
{{- define "middle" -}}
{{- $author := partial "function-authors-data.html" . -}}
- {{- $author = $author.user -}}
- {{- $users := where .Site.RegularPages "Section" $author -}}
+ {{- $authors := where .Site.RegularPages "Section" $author.user -}}
{{- $likes := where .Site.RegularPages ".Params.liked" true -}}
- {{- $filteredPages := $users | intersect $likes -}}
+ {{- $filteredPages := $authors | intersect $likes -}}
{{- $paginator := .Paginate $filteredPages -}}
{{- partial "navigator-middle.html"