summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/handler.go b/handler.go
index 0166d95..fae834a 100644
--- a/handler.go
+++ b/handler.go
@@ -42,8 +42,7 @@ func indexGet(w http.ResponseWriter, r *http.Request) {
}
}
- path := filepath.Join(config.Http.Templates, "index.html")
- ServeTemplate(w, "index", path, elements)
+ ServeTemplate(w, "index.html", elements)
}
func recipeGet(w http.ResponseWriter, r *http.Request) {
@@ -101,8 +100,7 @@ func recipeGet(w http.ResponseWriter, r *http.Request) {
goldmark.Convert([]byte(elements[0].DescriptionMarkdown), &buf)
elements[0].RenderedDescriptionMarkdown = buf.String()
- path := filepath.Join(config.Http.Templates, "recipe.html")
- ServeTemplate(w, "recipe", path, elements[0])
+ ServeTemplate(w, "recipe.html", elements[0])
}
func recipePost(w http.ResponseWriter, r *http.Request) {
@@ -175,8 +173,7 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) {
return
}
- path := filepath.Join(config.Http.Templates, "recipe_edit.html")
- ServeTemplate(w, "recipe", path, elements[0])
+ ServeTemplate(w, "recipe_edit.html", elements[0])
}
func recipeEditPost(w http.ResponseWriter, r *http.Request) {