diff --git a/website/content/guide/templates.md b/website/content/guide/templates.md index 33449a3a..e5ea6bc4 100644 --- a/website/content/guide/templates.md +++ b/website/content/guide/templates.md @@ -51,7 +51,7 @@ Example below shows how to use Go `html/template`: ```go func Hello(c echo.Context) error { - return c.Render(http.StatusOK, "hello", "World") + return c.Render(http.StatusOK, "hello.html", "World") } ```