From aff4790d22728d89e7e2dac8af262c92087b5b39 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 11 Sep 2021 12:27:59 +0200 Subject: Piece evry last week changes together in a big rewrite of the webui --- internal/webui/utils.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'internal/webui/utils.go') 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 -- cgit v1.2.3