summaryrefslogtreecommitdiff
path: root/utils/templates.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/templates.go')
-rw-r--r--utils/templates.go32
1 files changed, 0 insertions, 32 deletions
diff --git a/utils/templates.go b/utils/templates.go
deleted file mode 100644
index 00a8eb2..0000000
--- a/utils/templates.go
+++ /dev/null
@@ -1,32 +0,0 @@
-
-package utils
-
-import (
- "log"
- "net/http"
- "io/ioutil"
- "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)
- if err != nil {
- log.Print(err)
- http.Error(w, http.StatusText(404), 404)
- return
- }
- 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)
- if err != nil {
- log.Print(err)
- http.Error(w, http.StatusText(404), 404)
- return
- }
-}