htmgo/htmgo-site/pages/index.go

10 lines
174 B
Go
Raw Normal View History

2024-09-20 16:45:23 +00:00
package pages
import (
"github.com/maddalax/htmgo/framework/h"
)
func IndexPage(ctx *h.RequestContext) *h.Page {
2024-09-23 19:41:43 +00:00
return h.NewPage(MarkdownPage(ctx, "md/index.md", ""))
2024-09-20 16:45:23 +00:00
}