aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-25 03:03:25 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-25 03:03:25 +0800
commit99fefccd70d3d006a9f3ddccc45eda559af1f197 (patch)
tree44d7a59fe9a041385136787bc1a06496b27ad65d /templates
parentUse cache for raw files too (diff)
downloadforge-99fefccd70d3d006a9f3ddccc45eda559af1f197.tar.gz
forge-99fefccd70d3d006a9f3ddccc45eda559af1f197.tar.zst
forge-99fefccd70d3d006a9f3ddccc45eda559af1f197.zip
Fix group path trailing slash
Diffstat (limited to 'templates')
-rw-r--r--templates/_group_path.tmpl2
-rw-r--r--templates/group.tmpl2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/_group_path.tmpl b/templates/_group_path.tmpl
index 3a14edc..8904563 100644
--- a/templates/_group_path.tmpl
+++ b/templates/_group_path.tmpl
@@ -4,5 +4,5 @@
*/}}
{{- define "group_path_plain" -}}
{{- $p := . -}}
-{{- range $i, $s := . -}}{{- $s -}}{{- if ne $i (len $p) -}}/{{- end -}}{{- end -}}
+{{- range $i, $s := . -}}{{- $s -}}{{- if ne $i (minus (len $p) 1) -}}/{{- end -}}{{- end -}}
{{- end -}}
diff --git a/templates/group.tmpl b/templates/group.tmpl
index 98d4c76..3a4a7d1 100644
--- a/templates/group.tmpl
+++ b/templates/group.tmpl
@@ -13,7 +13,7 @@
<body class="group">
{{- template "header" . -}}
<div class="padding-wrapper">
- <p>{{- range $i, $s := .group_path -}}{{- $s -}}{{- if ne $i (len $group_path) }} / {{ end -}}{{- end -}}
+ <p>{{- range $i, $s := .group_path -}}{{- $s -}}{{- if ne $i (minus (len $group_path) 1) }} / {{ end -}}{{- end -}}
{{- if .description -}}
<p>{{- .description -}}</p>
{{- end -}}