aboutsummaryrefslogtreecommitdiff
path: root/templates/group.tmpl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/group.tmpl25
1 files changed, 12 insertions, 13 deletions
diff --git a/templates/group.tmpl b/templates/group.tmpl
index 0042e0f..c0f43d4 100644
--- a/templates/group.tmpl
+++ b/templates/group.tmpl
@@ -3,24 +3,23 @@
SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
*/}}
{{- define "group" -}}
-{{ $group_path := .group_path }}
+{{- $group_path := .group_path -}}
<!DOCTYPE html>
<html lang="en">
<head>
- {{ template "head_common" . }}
- <title>{{ range $i, $s := .group_path }}{{ $s }}{{ if ne $i (len $group_path) }} / {{ end }}{{ end }} &ndash; {{ .global.forge_title }}</title>
+ {{- template "head_common" . -}}
+ <title>{{- range $i, $s := .group_path -}}{{- $s -}}{{- if ne $i (len $group_path) -}}/{{- end -}}{{- end }} &ndash; {{ .global.forge_title -}}</title>
</head>
<body class="group">
- {{ template "header" . }}
+ {{- template "header" . -}}
<div class="padding-wrapper">
- <p>{{ range $i, $s := .group_path }}{{ $s }}{{ if ne $i (len $group_path) }} / {{ end }}{{ end }}
- {{ if .description }}
- <p>{{ .description }}</p>
- {{ end }}
-
- {{ template "group_view" . }}
+ <p>{{- range $i, $s := .group_path -}}{{- $s -}}{{- if ne $i (len $group_path) }} / {{ end -}}{{- end -}}
+ {{- if .description -}}
+ <p>{{- .description -}}</p>
+ {{- end -}}
+ {{- template "group_view" . -}}
</div>
- {{ if .direct_access }}
+ {{- if .direct_access -}}
<div class="padding-wrapper">
<form method="POST" enctype="application/x-www-form-urlencoded">
<table>
@@ -73,9 +72,9 @@
</table>
</form>
</div>
- {{ end }}
+ {{- end -}}
<footer>
- {{ template "footer" . }}
+ {{- template "footer" . -}}
</footer>
</body>
</html>