about summary refs log tree commit diff
path: root/src/bot.go
diff options
context:
space:
mode:
authorEmile <git@emile.space>2024-08-16 22:40:26 +0200
committerEmile <git@emile.space>2024-08-16 22:40:26 +0200
commita9930c02a33fe94141cd651212b5a815095c77ba (patch)
tree4027ea61b0cb6925604cffa56eb8a717ee3c0e0d /src/bot.go
parent294659add1082f4a2333871f2a45fe0ec22fa2a7 (diff)
make template path configurable
Diffstat (limited to 'src/bot.go')
-rw-r--r--src/bot.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bot.go b/src/bot.go
index 1a0d342..7613180 100644
--- a/src/bot.go
+++ b/src/bot.go
@@ -384,7 +384,7 @@ func botsHandler(w http.ResponseWriter, r *http.Request) {
 		data["bots"] = bots
 
 		// 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"))
@@ -521,7 +521,7 @@ func botSingleHandler(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"))
@@ -706,7 +706,7 @@ func botNewHandler(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"))