package apps import "github.com/gin-gonic/gin" func Home(c *gin.Context) { data := gin.H{ "Title": "Welcome to " + c.Request.Host, "Message": "This is " + c.Request.Host + " index page.", } c.HTML(200, "apps-home.html", data) }