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

16 lines
259 B
Go

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