github.com/segakazzz/buffalo@v0.16.22-0.20210119082501-1f52048d3feb/genny/newapp/web/templates/actions/home.go.tmpl (about) 1 package actions 2 3 import ( 4 "net/http" 5 6 "github.com/gobuffalo/buffalo" 7 ) 8 9 // HomeHandler is a default handler to serve up 10 // a home page. 11 func HomeHandler(c buffalo.Context) error { 12 return c.Render(http.StatusOK, r.HTML("index.html")) 13 }