Files
fiber-sessions/app/handlers/about.go
Eden Kirin c0f161abe1 Initial
2024-02-05 22:30:11 +01:00

18 lines
306 B
Go

package handlers
import (
"fiber-sessions/app/templates"
"github.com/gofiber/fiber/v2"
)
var pcAbout templates.PageContext = templates.PageContext{
Title: "Welcome to the demo - About",
ActivePage: "about",
}
func About(f *fiber.Ctx) error {
Render(f, templates.About(pcAbout))
return nil
}