blob: 27ee2edc07a9fde8af8d2f6c2701ef026dee35e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package meta
import (
"fmt"
"lain/config"
"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)
}
|