summaryrefslogtreecommitdiff
path: root/templates.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-12 19:18:48 +0100
committerxengineering <me@xengineering.eu>2023-02-12 19:18:48 +0100
commit88af7a818f2ef3c45c4e849512ca1f6289a9dce2 (patch)
tree878a6feec224c6169ebee15487e80f6ce27224d2 /templates.go
parenta288826b924266ff4577003103ef49cf6bb5cc3c (diff)
downloadceres-88af7a818f2ef3c45c4e849512ca1f6289a9dce2.tar
ceres-88af7a818f2ef3c45c4e849512ca1f6289a9dce2.tar.zst
ceres-88af7a818f2ef3c45c4e849512ca1f6289a9dce2.zip
Centralize templating
This makes templating easier and allows to use partial templates.
Diffstat (limited to 'templates.go')
-rw-r--r--templates.go22
1 files changed, 8 insertions, 14 deletions
diff --git a/templates.go b/templates.go
index d18017f..6b4fe51 100644
--- a/templates.go
+++ b/templates.go
@@ -1,28 +1,22 @@
package main
import (
- "io/ioutil"
"log"
"net/http"
"text/template" // FIXME switch to html/template for security reasons
// and make a workaround for rendered Markdown insertion
)
-func ServeTemplate(w http.ResponseWriter, name string, path string, data interface{}) {
-
- templateFile, err := ioutil.ReadFile(path)
+func setupTemplates() *template.Template {
+ t, err := template.ParseGlob(config.Http.Templates + "/*.html")
if err != nil {
- log.Print(err)
- http.Error(w, http.StatusText(404), 404)
- return
+ panic(err)
}
- tmpl, err := template.New(name).Parse(string(templateFile))
- if err != nil {
- log.Print(err)
- http.Error(w, http.StatusText(404), 404)
- return
- }
- err = tmpl.Execute(w, data)
+ return t
+}
+
+func ServeTemplate(w http.ResponseWriter, name string, data interface{}) {
+ err := templates.ExecuteTemplate(w, name, data)
if err != nil {
log.Print(err)
http.Error(w, http.StatusText(404), 404)