19 lines
343 B
Go
19 lines
343 B
Go
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,
|
|
})
|
|
}
|