Files
go-htmx-templ/app/handlers/about.go
2024-01-21 14:32:32 +01:00

17 lines
293 B
Go

package handlers
import (
"templ-tests/app/templates"
"github.com/gin-gonic/gin"
)
var pcAbout templates.PageContext = templates.PageContext{
Title: "Welcome to the demo - About",
ActivePage: "about",
}
func About(c *gin.Context) {
templates.About(pcAbout).Render(c, c.Writer)
}