first commit
This commit is contained in:
18
routes/index.go
Normal file
18
routes/index.go
Normal file
@ -0,0 +1,18 @@
|
||||
package routes
|
||||
|
||||
import (
|
||||
"github.com/gofiber/fiber/v2"
|
||||
"github.com/gofiber/fiber/v2/log"
|
||||
)
|
||||
|
||||
func IndexRoute(c *fiber.Ctx) error{
|
||||
content, err := GetContent("content", "readme")
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return c.Status(505).SendString("Server error")
|
||||
}
|
||||
|
||||
return c.Render("index", fiber.Map{
|
||||
"readme": content,
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user