diff --git a/README.md b/README.md index de79ec1..8b655b9 100644 --- a/README.md +++ b/README.md @@ -415,36 +415,36 @@ Using templates with same name in different directories func main() { router := gin.Default() router.LoadHTMLGlob("templates/**/*") - router.GET("/post/index", func(c *gin.Context) { - c.HTML(http.StatusOK, "post/index.tmpl", gin.H{ + router.GET("/posts/index", func(c *gin.Context) { + c.HTML(http.StatusOK, "posts/index.tmpl", gin.H{ "title": "Posts", }) }) - router.GET("/user/index", func(c *gin.Context) { - c.HTML(http.StatusOK, "user/index.tmpl", gin.H{ + router.GET("/users/index", func(c *gin.Context) { + c.HTML(http.StatusOK, "users/index.tmpl", gin.H{ "title": "Users", }) }) router.Run(":8080") } ``` -templates/post/index.tmpl +templates/posts/index.tmpl ```html -{{ define "post/index.tmpl" }} +{{ define "posts/index.tmpl" }}

{{ .title }}

-

Using post/index.tmpl

+

Using posts/index.tmpl

{{ end }} ``` -templates/user/index.tmpl +templates/users/index.tmpl ```html -{{ define "user/index.tmpl" }} +{{ define "users/index.tmpl" }}

{{ .title }}

-

Using user/index.tmpl

+

Using users/index.tmpl

{{ end }} ```