From ea54de7d32e6b576ccfb430e7e57811b7c4587fe Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 17 Sep 2023 11:07:08 +0200 Subject: Remove complete implementation Restarting from scratch seems to be the fastest approach to switch to sqlite and get rid of some other structural mistakes from the past. --- templates.go | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 templates.go (limited to 'templates.go') diff --git a/templates.go b/templates.go deleted file mode 100644 index 2769926..0000000 --- a/templates.go +++ /dev/null @@ -1,24 +0,0 @@ -package main - -import ( - "log" - "net/http" - "text/template" -) - -func setupTemplates() *template.Template { - t, err := template.ParseGlob(config.Templates + "/*.html") - if err != nil { - panic(err) - } - 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) - return - } -} -- cgit v1.2.3-70-g09d2