goCake/home.go

12 lines
220 B
Go
Raw Normal View History

2020-11-08 16:00:33 +00:00
package main
import (
"net/http"
)
// Home is a handler for / renders the home.html
func Home(w http.ResponseWriter, req *http.Request) {
data := struct{ Title string }{Title: "Home"}
render(w, "home.html", data)
}