Shioriko/pkg/app/frontend_routes.go
2021-05-10 09:45:32 +07:00

21 lines
357 B
Go

package app
import (
"net/http"
"github.com/Damillora/Shioriko/pkg/config"
"github.com/gin-gonic/gin"
)
func InitializeFrontendRoutes(g *gin.Engine) {
g.NoRoute(frontendHome)
}
func frontendHome(c *gin.Context) {
baseURL := config.CurrentConfig.BaseURL
c.HTML(http.StatusOK, "index.html", gin.H{
"title": "Home",
"base_url": baseURL,
})
}