htmgo/pages/news.$id.go
2024-09-10 19:52:18 -05:00

14 lines
213 B
Go

package pages
import (
"fmt"
"github.com/gofiber/fiber/v2"
"mhtml/h"
)
func Test(ctx *fiber.Ctx) *h.Page {
text := fmt.Sprintf("News ID: %s", ctx.Params("id"))
return h.NewPage(
h.Div(h.Text(text)),
)
}