about summary refs log tree commit diff
path: root/src/http.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/http.go
parent294659add1082f4a2333871f2a45fe0ec22fa2a7 (diff)
make template path configurable
Diffstat (limited to 'src/http.go')
-rw-r--r--src/http.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go
index 894542a..0b7481e 100644
--- a/src/http.go
+++ b/src/http.go
@@ -1,6 +1,7 @@
 package main
 
 import (
+	"fmt"
 	"html/template"
 	"net/http"
 )
@@ -40,7 +41,7 @@ func indexHandler(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"))