new: Add interactive bar script

This commit is contained in:
ngn
2024-03-21 20:10:38 +03:00
parent 275053ddb3
commit 52c619d289
5 changed files with 19 additions and 4 deletions

View File

@ -60,7 +60,7 @@ func PostRoute(c *fiber.Ctx) error {
}
return c.Render("post", fiber.Map{
"title": "News",
"title": con.Title,
"post": con,
})
}

View File

@ -45,7 +45,7 @@ func WikiRoute(c *fiber.Ctx) error{
con.Title = "Wiki: "+con.Title
return c.Render("post", fiber.Map{
"title": "Wiki",
"title": con.Title,
"post": con,
})
}