aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/count-likes.html
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-12-30 16:39:52 -0500
committertdro <tdro@noreply.example.com>2023-12-30 16:39:52 -0500
commit088ff760327f0e7f3d1e4d734442cb1a6b151f64 (patch)
tree80ef8eb9b7b9e0574e4a3b5290f5055214f1343f /themes/default/layouts/partials/count-likes.html
parentfad87c5cc042ea293b3d5cd7a139d124dce1cbd4 (diff)
downloadcanory-088ff760327f0e7f3d1e4d734442cb1a6b151f64.tar.gz
canory-088ff760327f0e7f3d1e4d734442cb1a6b151f64.tar.bz2
canory-088ff760327f0e7f3d1e4d734442cb1a6b151f64.zip
config: Likes -> Marked
Diffstat (limited to 'themes/default/layouts/partials/count-likes.html')
-rw-r--r--themes/default/layouts/partials/count-likes.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/themes/default/layouts/partials/count-likes.html b/themes/default/layouts/partials/count-likes.html
deleted file mode 100644
index e9a2d09..0000000
--- a/themes/default/layouts/partials/count-likes.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{{- $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) -}}