Files
go-htmx-templ/app/handlers/about.go
2024-02-01 22:10:07 +01:00

18 lines
302 B
Go

package handlers
import (
"htmx-templ/app/templates"
"github.com/gofiber/fiber/v2"
)
var pcAbout templates.PageContext = templates.PageContext{
Title: "Welcome to the demo - About",
ActivePage: "about",
}
func About(f *fiber.Ctx) error {
Render(f, templates.About(pcAbout))
return nil
}