Errything changing

This commit is contained in:
2024-03-27 14:52:28 -06:00
parent 3ba730043f
commit 0b8b895c21
14 changed files with 103 additions and 117 deletions

14
pages/tools.ssedemo.go Normal file
View File

@ -0,0 +1,14 @@
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)
}