htmgo/htmgo-site/pages/examples/htmgo-site.go
2024-10-28 11:39:46 -05:00

10 lines
183 B
Go

package examples
import (
"github.com/maddalax/htmgo/framework/h"
)
func HtmgoSiteExample(ctx *h.RequestContext) *h.Page {
SetSnippet(ctx, &HtmgoSiteSnippet)
return Index(ctx)
}