package ui import ( "net/http" "github.com/gin-gonic/gin" "git.jmbit.de/filegate/filegate/utils" "git.jmbit.de/filegate/filegate/web/templates" ) func index(c *gin.Context) { c.HTML(http.StatusOK, "", templates.Index(utils.GenMetaContent(c), nil)) }