pollo/pages/home.go
2024-07-09 11:10:32 -06:00

20 lines
313 B
Go

package pages
import (
"pollo/lib"
"github.com/labstack/echo/v4"
)
type HomeProps struct {
}
func Home(c echo.Context) error {
props := HomeProps{}
// Specify the partials used by this page
partials := []string{"header"}
// Render the template
return lib.RenderTemplate(c, "base", partials, props)
}