htmgo/htmgo-site/pages/index.go
2024-09-20 11:45:23 -05:00

9 lines
170 B
Go

package pages
import (
"github.com/maddalax/htmgo/framework/h"
)
func IndexPage(ctx *h.RequestContext) *h.Page {
return h.NewPage(MarkdownPage(ctx, "md/index.md"))
}