summaryrefslogtreecommitdiff
path: root/templates.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 18:19:30 +0100
committerxengineering <me@xengineering.eu>2023-02-11 18:19:30 +0100
commitced1e404bd762abb114321334a3812805dee7059 (patch)
tree27f6ac74a2de4bd020af17408cd19d9e0265a501 /templates.go
parent05e3b3397c888807719d70af4ed3c73397d9374f (diff)
downloadceres-ced1e404bd762abb114321334a3812805dee7059.tar
ceres-ced1e404bd762abb114321334a3812805dee7059.tar.zst
ceres-ced1e404bd762abb114321334a3812805dee7059.zip
Apply go fmt *.go
This auto-applies the recommended Go codestyle.
Diffstat (limited to 'templates.go')
-rw-r--r--templates.go19
1 files changed, 9 insertions, 10 deletions
diff --git a/templates.go b/templates.go
index 84e449a..d18017f 100644
--- a/templates.go
+++ b/templates.go
@@ -1,32 +1,31 @@
-
package main
import (
+ "io/ioutil"
"log"
"net/http"
- "io/ioutil"
- "text/template" // FIXME switch to html/template for security reasons
- // and make a workaround for rendered Markdown insertion
+ "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)
+ 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))
+ tmpl, err := template.New(name).Parse(string(templateFile))
if err != nil {
log.Print(err)
- http.Error(w, http.StatusText(404), 404)
- return
+ 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
+ http.Error(w, http.StatusText(404), 404)
+ return
}
}