aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-11-21 15:42:01 -0500
committertdro <tdro@noreply.example.com>2023-11-21 15:42:01 -0500
commit9a38bf790011a771a753ef6e01bf7c2b5d5635c8 (patch)
treedbc1b3a0ffba18259a69fea2893eb8de885e69ff /themes/default/layouts/partials
parent6d7dec46271651785443321fc26344b355d8bd98 (diff)
downloadcanory-9a38bf790011a771a753ef6e01bf7c2b5d5635c8.tar.gz
canory-9a38bf790011a771a753ef6e01bf7c2b5d5635c8.tar.bz2
canory-9a38bf790011a771a753ef6e01bf7c2b5d5635c8.zip
themes/default/layouts/_default/index: Simplify
Sooner rather than later
Diffstat (limited to 'themes/default/layouts/partials')
-rw-r--r--themes/default/layouts/partials/navigator-right.html22
1 files changed, 1 insertions, 21 deletions
diff --git a/themes/default/layouts/partials/navigator-right.html b/themes/default/layouts/partials/navigator-right.html
index 4ad5d42..c2e6f4c 100644
--- a/themes/default/layouts/partials/navigator-right.html
+++ b/themes/default/layouts/partials/navigator-right.html
@@ -1,27 +1,7 @@
{{- partial "author-list.html" . -}}
-{{- $author := "Section" -}}
-
-{{- if or
- (eq .Page.Kind "page")
- (eq .Page.Kind "section")
--}}
+{{- if (in (slice "page" "section") .Page.Kind) -}}
{{- partial "gallery.html" . -}}
{{- partial "following-list.html" . -}}
-
-{{- end -}}
-
-{{- if or
- (eq .Page.Kind "page")
- (eq .Page.Kind "section")
--}}
-
{{- partial "webring.html" . -}}
-
-{{- else -}}
-
- {{- range first 1 (where .Site.Pages $author .Site.Author.default.webring) -}}
- {{- partial "webring.html" . -}}
- {{- end -}}
-
{{- end -}}