aboutsummaryrefslogtreecommitdiff
path: root/internal/webui/utils.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/webui/utils.go')
-rw-r--r--internal/webui/utils.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/webui/utils.go b/internal/webui/utils.go
index be8baf3..28a7add 100644
--- a/internal/webui/utils.go
+++ b/internal/webui/utils.go
@@ -2,6 +2,7 @@ package webui
import (
"embed"
+ "html/template"
"log"
"net/http"
@@ -16,6 +17,13 @@ var templatesFS embed.FS
//go:embed static/*
var staticFS embed.FS
+// Template functions
+var funcMap = template.FuncMap{
+ "odd": func(i int) bool {
+ return i%2 == 1
+ },
+}
+
// the environment that will be passed to our handlers
type env struct {
conf *config.Config