diff options
author | Emile <git@emile.space> | 2024-08-16 22:40:26 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-08-16 22:40:26 +0200 |
commit | a9930c02a33fe94141cd651212b5a815095c77ba (patch) | |
tree | 4027ea61b0cb6925604cffa56eb8a717ee3c0e0d /src/battle.go | |
parent | 294659add1082f4a2333871f2a45fe0ec22fa2a7 (diff) |
make template path configurable
Diffstat (limited to 'src/battle.go')
-rw-r--r-- | src/battle.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle.go b/src/battle.go index 3d418f2..4c36327 100644 --- a/src/battle.go +++ b/src/battle.go @@ -364,7 +364,7 @@ func battlesHandler(w http.ResponseWriter, r *http.Request) { data["battles"] = battles // get the template - t, err := template.ParseGlob("./templates/*.html") + t, err := template.ParseGlob(fmt.Sprintf("%s/*.html", templatesPath)) if err != nil { w.WriteHeader(http.StatusInternalServerError) w.Write([]byte("500 - Error reading template file")) @@ -427,7 +427,7 @@ func battleNewHandler(w http.ResponseWriter, r *http.Request) { } // get the template - t, err := template.ParseGlob("./templates/*.html") + t, err := template.ParseGlob(fmt.Sprintf("%s/*.html", templatesPath)) if err != nil { w.WriteHeader(http.StatusInternalServerError) w.Write([]byte("500 - Error reading template file")) @@ -628,7 +628,7 @@ func battleSingleHandler(w http.ResponseWriter, r *http.Request) { } // get the template - t, err := template.ParseGlob("./templates/*.html") + t, err := template.ParseGlob(fmt.Sprintf("%s/*.html", templatesPath)) if err != nil { w.WriteHeader(http.StatusInternalServerError) w.Write([]byte("500 - Error reading template file")) |