예제 #1
0
파일: views.go 프로젝트: tiborv/tibomat
func views(r *gin.Engine) {
	r.GET("/", func(c *gin.Context) {

		c.HTML(http.StatusOK, "index.html", gin.H{
			"title": "Tibor's Valgomat",
		})
	})
}