16 lines
259 B
Go
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)
|
|
}
|