package handlers import ( "net/http" "github.com/gin-gonic/gin" ) // HomePage renders the public home page. func HomePage() gin.HandlerFunc { return func(c *gin.Context) { tr := getTr(c) data := DefaultData(c) data["Title"] = tr["page_home"] c.HTML(http.StatusOK, "home", data) } }