htmgo/todo-list/pages/base/root.go
2024-09-22 13:32:20 -05:00

16 lines
286 B
Go

package base
import (
"github.com/maddalax/htmgo/framework/h"
)
func RootPage(children ...h.Ren) h.Ren {
return h.Html(
h.HxExtension(h.BaseExtensions()),
h.Head(
h.Link("/public/main.css", "stylesheet"),
h.Script("/public/htmgo.js"),
),
h.Fragment(children...),
)
}