package ui import ( "github.com/gin-gonic/gin" "net/http" ) func getProfile(c *gin.Context) { c.HTML(http.StatusOK, "profile", gin.H{ "title": "Profile", }) }