Template
1
0
Fork 0
goth.stack/pages/ssedemo.go

15 lines
296 B
Go
Raw Normal View History

2023-05-18 20:04:55 -06:00
package pages
import (
"atri.dad/lib"
"github.com/labstack/echo/v4"
)
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)
}