16 lines
260 B
Go
16 lines
260 B
Go
|
|
package partials
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/maddalax/htmgo/framework/h"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
func CurrentTimePartial(ctx *h.RequestContext) *h.Partial {
|
||
|
|
now := time.Now()
|
||
|
|
return h.NewPartial(
|
||
|
|
h.Div(
|
||
|
|
h.Pf("The current time is %s", now.Format(time.RFC3339)),
|
||
|
|
),
|
||
|
|
)
|
||
|
|
}
|