Template
1
0
Fork 0
goth.stack/pages/ssedemo.go
2024-01-26 14:39:58 -07:00

14 lines
298 B
Go

package pages
import (
"github.com/labstack/echo/v4"
"goth.stack/lib"
)
func SSEDemo(c echo.Context) error {
// Specify the partials used by this page
partials := []string{"header", "navitems"}
// Render the template
return lib.RenderTemplate(c.Response().Writer, "base", partials, nil)
}