diff --git a/website/content/guide/templates.md b/website/content/guide/templates.md index 33449a3a..a46e8ea4 100644 --- a/website/content/guide/templates.md +++ b/website/content/guide/templates.md @@ -112,7 +112,7 @@ func main() { // Named route "foobar" e.GET("/something", func(c echo.Context) error { - return c.Render(http.StatusOK, "something.html", map[string]interface{}{ + return c.Render(http.StatusOK, "template.html", map[string]interface{}{ "name": "Dolly!", }) }).Name = "foobar"