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

16 lines
261 B
Go

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