Updated some settings in pages

This commit is contained in:
Leon Mika 2026-03-23 21:48:43 +11:00
parent ef038172ac
commit 5badce0d16
10 changed files with 56 additions and 47 deletions

View file

@ -31,7 +31,7 @@ func (ph PagesHandler) New(c fiber.Ctx) error {
return c.Render("pages/edit", fiber.Map{
"page": page,
"isNew": true,
"bodyClass": "page-edit-page",
"bodyClass": "post-edit-page",
})
}
@ -49,7 +49,7 @@ func (ph PagesHandler) Edit(c fiber.Ctx) error {
return c.Render("pages/edit", fiber.Map{
"page": page,
"isNew": false,
"bodyClass": "page-edit-page",
"bodyClass": "post-edit-page",
})
}