* wip * merge * working again * refactor/make it a bit cleaner * fix to only call cb for session id who initiated the event * support broadcasting events to all clients * refactor * refactor into ws extension * add go mod * rename module * fix naming * refactor * rename * merge * fix manager ws delete, add manager tests * add metric page * fixes, add k6 script * fixes, add k6 script * deploy docker image * cleanup * cleanup * cleanup
26 lines
455 B
Go
26 lines
455 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/maddalax/htmgo/framework/h"
|
|
)
|
|
|
|
func RootPage(ctx *h.RequestContext, children ...h.Ren) h.Ren {
|
|
return h.Html(
|
|
h.JoinExtensions(
|
|
h.HxExtension(
|
|
h.BaseExtensions(),
|
|
),
|
|
h.HxExtension("ws"),
|
|
),
|
|
h.Head(
|
|
h.Link("/public/main.css", "stylesheet"),
|
|
h.Script("/public/htmgo.js"),
|
|
),
|
|
h.Body(
|
|
h.Div(
|
|
h.Class("flex flex-col gap-2 bg-white h-full"),
|
|
h.Fragment(children...),
|
|
),
|
|
),
|
|
)
|
|
}
|