blob: 1de7d70f79ca5a5c327c450c46af9306eec2fc12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package meta
import (
"cafe/config"
"fmt"
"github.com/gofiber/fiber/v2"
)
func SetPageTitle(context *fiber.Ctx, title string) {
title = fmt.Sprintf("%s | %s", title, config.Server.AppName)
context.Locals("Title", title)
}
|