summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/handler.go b/handler.go
index fae834a..5198a9f 100644
--- a/handler.go
+++ b/handler.go
@@ -233,9 +233,7 @@ func recipeImageGet(w http.ResponseWriter, r *http.Request) {
func addRecipesGet(w http.ResponseWriter, r *http.Request) {
- filename := "add.html"
- path := filepath.Join(config.Http.Static, filename)
- http.ServeFile(w, r, path)
+ ServeTemplate(w, "add.html", nil)
}
func addRecipesPost(w http.ResponseWriter, r *http.Request) {