github.com/corylanou/buffalo@v0.8.0/generators/newapp/templates/actions/home.go.tmpl (about) 1 package actions 2 3 import "github.com/gobuffalo/buffalo" 4 5 // HomeHandler is a default handler to serve up 6 // a home page. 7 func HomeHandler(c buffalo.Context) error { 8 return c.Render(200, r.HTML("index.html")) 9 }