2024-09-11 00:52:18 +00:00
|
|
|
package pages
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
|
"mhtml/h"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func IndexPage(c *fiber.Ctx) *h.Page {
|
2024-09-13 01:31:18 +00:00
|
|
|
return h.NewPage(h.Html(
|
|
|
|
|
h.HxExtension("path-deps, response-targets, mutation-error"),
|
|
|
|
|
h.Head(
|
|
|
|
|
h.Script("https://cdn.tailwindcss.com"),
|
|
|
|
|
h.Script("/js/dist/mhtml.js"),
|
|
|
|
|
),
|
|
|
|
|
h.Body(),
|
|
|
|
|
))
|
2024-09-11 00:52:18 +00:00
|
|
|
}
|