Fixed some text in the readme

The code that was there didn't work. Now it does
This commit is contained in:
Skuli Oskarsson 2014-06-30 22:48:33 +00:00
parent 3253ef5b75
commit 02dc17de4b
1 changed files with 2 additions and 2 deletions

View File

@ -208,8 +208,8 @@ func main() {
r := gin.Default()
r.LoadHTMLTemplates("templates/*")
r.GET("index", func(c *gin.Context) {
obj := gin.h{"title": "Main website"}
c.HTML(200, "templates/index.tmpl", obj)
obj := gin.H{"title": "Main website"}
c.HTML(200, "index.tmpl", obj)
})
}
```