diff options
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) { |