1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

More proofreading and minor revisions to Hugo docs

Among the various changes, most instances of

    {{ template "partials/FILE.html" . }}

were changed to

    {{ partial "FILE.html" . }}

Also, in main.go, change "2013" to "2013-14".
This commit is contained in:
Anthony Fok
2014-09-02 22:12:26 -06:00
committed by spf13
parent ac78d25240
commit 5dd3eaabee
31 changed files with 258 additions and 252 deletions

View File

@@ -33,7 +33,7 @@ Simply include the following line where you want your comments to appear
## Configuring Disqus
That template requires you to set a single value in your site config file, eg. config.yaml.
That template requires you to set a single value in your site config file, e.g. config.yaml.
disqusShortname = "XYW"
@@ -73,7 +73,7 @@ Notice that there is a simple if statement that detects when you are running on
Now reference the partial template from your page template:
{{ template "partials/disqus.html" . }}
{{ partial "disqus.html" . }}
# Alternatives