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