website/routes/index.go

19 lines
342 B
Go
Raw Normal View History

2023-12-09 16:25:38 +00:00
package routes
import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/log"
)
func IndexRoute(c *fiber.Ctx) error{
content, err := GetContent("content", "index")
2023-12-09 16:25:38 +00:00
if err != nil {
log.Error(err)
return c.Status(505).SendString("Server error")
}
return c.Render("index", fiber.Map{
"readme": content,
})
}