diff --git a/frontend/assets/templates/page.tpl b/frontend/assets/templates/page.tpl
index d8bd1a0..94d1ccf 100644
--- a/frontend/assets/templates/page.tpl
+++ b/frontend/assets/templates/page.tpl
@@ -60,7 +60,7 @@
{{ end }}
-
+
diff --git a/frontend/template.go b/frontend/template.go
index 2f993f6..d735d46 100644
--- a/frontend/template.go
+++ b/frontend/template.go
@@ -3,6 +3,7 @@ package main
import (
"embed"
"html/template"
+ "net/url"
"strings"
)
@@ -104,6 +105,12 @@ var requiredTemplates = [...]string{
"bird",
}
+// define functions to be made available in templates
+
+var funcMap = template.FuncMap{
+ "pathescape": url.PathEscape,
+}
+
// import templates from embedded assets
func ImportTemplates() {
@@ -121,7 +128,7 @@ func ImportTemplates() {
}
// and add it to the template library
- template, err := template.New(tmpl).Parse(string(def))
+ template, err := template.New(tmpl).Funcs(funcMap).Parse(string(def))
if err != nil {
panic("Unable to parse template (" + TEMPLATE_PATH + tmpl + ": " + err.Error())
}