aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-04-19 12:17:27 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-04-19 12:17:27 +0200
commitddb1ca205abb6349b59bc5ea7764a68484e72338 (patch)
tree84db9ac2260ad87b04bca10ba6a90ecb1b4b83b3 /main.go
parentbdb9af5a26f49799cb1feec866d289513eb09e7b (diff)
downloadguichet-ddb1ca205abb6349b59bc5ea7764a68484e72338.tar.gz
guichet-ddb1ca205abb6349b59bc5ea7764a68484e72338.zip
bind website page
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.go b/main.go
index 0e47e73..ca33795 100644
--- a/main.go
+++ b/main.go
@@ -105,7 +105,12 @@ func readConfig() ConfigFile {
}
func getTemplate(name string) *template.Template {
- return template.Must(template.ParseFiles(templatePath+"/layout.html", templatePath+"/"+name))
+ return template.Must(template.New("layout.html").Funcs(template.FuncMap {
+ "contains": strings.Contains,
+ }).ParseFiles(
+ templatePath+"/layout.html",
+ templatePath+"/"+name,
+ ))
}
func main() {