summaryrefslogtreecommitdiff
path: root/view/recipes.go
blob: 3a5fbf89f2e194f405cb4c4bcfa090637bc8f1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package view

import (
	"net/http"

	"xengineering.eu/ceres/model"
)

func Recipes(w http.ResponseWriter, r *http.Request) {
	recipes := make(model.Recipes, 0)

	err := recipes.Read()
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}

	err = html.ExecuteTemplate(w, "recipes", recipes)
	if err != nil {
		http.Error(w, err.Error(), http.StatusInternalServerError)
		return
	}
}