aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/section.media.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.media.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.media.html')
-rw-r--r--themes/default/layouts/_default/section.media.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/themes/default/layouts/_default/section.media.html b/themes/default/layouts/_default/section.media.html
index 48cf4a7..5bf7d89 100644
--- a/themes/default/layouts/_default/section.media.html
+++ b/themes/default/layouts/_default/section.media.html
@@ -32,13 +32,15 @@
{{- partial "profile.html" . -}}
{{- $author := partial "function-authors-data.html" . -}}
- {{- $author = $author.user -}}
{{- $notFeeds := where .Site.RegularPages "Params.feed" "eq" nil -}}
- {{- $users := where .Site.RegularPages "Section" $author -}}
- {{- $filteredPages := $users | intersect $notFeeds -}}
+ {{- $authors := where .Site.RegularPages "Section" $author.user -}}
+ {{- $filteredPages := $authors | intersect $notFeeds -}}
{{- $count := 0 -}}
{{- range first 100 $filteredPages -}}
+ {{- if eq $count 10 -}}
+ {{- break -}}
+ {{- end -}}
{{- if or
(in .Content "<figure>")
(in .Content "<imgur-video>")