htmgo/htmgo-site/pages/time.go

16 lines
245 B
Go
Raw Normal View History

2024-09-24 17:39:16 +00:00
package pages
import (
"github.com/maddalax/htmgo/framework/h"
"htmgo-site/partials"
)
func CurrentTimePage(ctx *h.RequestContext) *h.Page {
2024-10-28 15:32:50 +00:00
return RootPage(
ctx,
h.GetPartial(
partials.CurrentTimePartial,
"load, every 1s"),
)
2024-09-24 17:39:16 +00:00
}