2023-05-18 20:04:55 -06:00
|
|
|
package pages
|
|
|
|
|
|
|
|
import (
|
2024-11-03 17:01:48 -06:00
|
|
|
"goth.stack/lib"
|
2023-05-18 20:04:55 -06:00
|
|
|
"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)
|
|
|
|
}
|