Admin: Gestion des listes
This commit is contained in:
parent
6acd737b99
commit
28662ed965
13 changed files with 605 additions and 29 deletions
|
|
@ -5,6 +5,11 @@ import "github.com/gofiber/fiber/v2"
|
|||
func Homepage(c *fiber.Ctx) error {
|
||||
return c.Render("index", fiber.Map{
|
||||
"PageTitle": "Accueil",
|
||||
"Title": "Hello, World!",
|
||||
})
|
||||
}
|
||||
|
||||
func Admin(c *fiber.Ctx) error {
|
||||
return c.Render("admin", fiber.Map{
|
||||
"PageTitle": "Administration",
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue