htmgo/htmgo-site/pages/examples/htmgo-site.go

11 lines
183 B
Go
Raw Normal View History

2024-10-28 16:39:46 +00:00
package examples
import (
"github.com/maddalax/htmgo/framework/h"
)
func HtmgoSiteExample(ctx *h.RequestContext) *h.Page {
SetSnippet(ctx, &HtmgoSiteSnippet)
return Index(ctx)
}