11 lines
184 B
Go
11 lines
184 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
"mhtml/h"
|
|
"mhtml/pages/base"
|
|
)
|
|
|
|
func IndexPage(c *fiber.Ctx) *h.Page {
|
|
return h.NewPage(base.RootPage(h.P("this is cool")))
|
|
}
|