From 09db43fd50378499d900fafa13a28ca75f8e4824 Mon Sep 17 00:00:00 2001 From: Guilherme Oenning Date: Mon, 13 Feb 2017 22:13:23 +0000 Subject: [PATCH] extension was missing --- website/content/guide/templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/guide/templates.md b/website/content/guide/templates.md index ffd7828b3..4ee8d6a37 100644 --- a/website/content/guide/templates.md +++ b/website/content/guide/templates.md @@ -53,6 +53,6 @@ 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") } ```