goCake/home.go
2020-11-08 17:00:33 +01:00

12 lines
220 B
Go

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)
}