From b14dd3505387d886c96c47783e2fc38d0b230f58 Mon Sep 17 00:00:00 2001 From: Bradley Nelson Date: Fri, 24 May 2019 16:51:10 -0600 Subject: [PATCH] Updated link to Go Docs to more helpful page The text/template page is a better resource for how Hugo templates work as is talks about the tags and what they do. --- content/en/templates/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/templates/introduction.md b/content/en/templates/introduction.md index 1e1778eb0..e07957656 100644 --- a/content/en/templates/introduction.md +++ b/content/en/templates/introduction.md @@ -20,7 +20,7 @@ toc: true --- {{% note %}} -The following is only a primer on Go Templates. For an in-depth look into Go Templates, check the official [Go docs](http://golang.org/pkg/html/template/). +The following is only a primer on Go Templates. For an in-depth look into Go Templates, check the official [Go docs](https://golang.org/pkg/text/template/). {{% /note %}} Go Templates provide an extremely simple template language that adheres to the belief that only the most basic of logic belongs in the template or view layer.