saasitone/controllers/about.go
2021-12-03 06:11:01 -05:00

19 lines
262 B
Go

package controllers
import (
"github.com/labstack/echo/v4"
)
type About struct {
Controller
}
func (a *About) Get(c echo.Context) error {
p := NewPage(c)
p.Layout = "main"
p.Name = "about"
p.Data = "This is the about page"
return a.RenderPage(c, p)
}