htmgo/todo-list/pages/base/root.go

17 lines
286 B
Go
Raw Normal View History

2024-09-19 23:13:04 +00:00
package base
import (
"github.com/maddalax/htmgo/framework/h"
)
func RootPage(children ...h.Ren) h.Ren {
2024-09-19 23:13:04 +00:00
return h.Html(
h.HxExtension(h.BaseExtensions()),
2024-09-19 23:13:04 +00:00
h.Head(
h.Link("/public/main.css", "stylesheet"),
h.Script("/public/htmgo.js"),
),
h.Fragment(children...),
)
}