docs: Add Pages to variables section
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 21 Nov 2016 16:12:42 +0000 (17:12 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Nov 2016 08:57:03 +0000 (09:57 +0100)
And some other minor doc fixes.

Closes #2297
Closes #2649

docs/content/content/multilingual.md
docs/content/overview/source-directory.md
docs/content/templates/functions.md
docs/content/templates/variables.md

index 44b425f9595ed06f45d98aecc629493635c305b1..a60ef24ffda111218e4fcf6799779390e36f09f2 100644 (file)
@@ -190,7 +190,7 @@ The rendering of the main navigation works as usual. `.Site.Menus` will just con
 
 ```html
 <ul>
-    {{- $current := . -}}
+    {{- $currentPage := . -}}
     {{ range .Site.Menus.main -}}
     <li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
         <a href="{{ .URL | absLangURL }}">{{ .Name }}</a>
index 5eef7c23c55d7b386d726769a6a387e96432cf39..3ac4be505a4a854dde390c178ec9214d2991038a 100644 (file)
@@ -102,7 +102,7 @@ Since Hugo 0.18, "everything" is a `Page` that can have content and metadata, li
 
 To add content and frontmatter to the home page, a section, a taxonomy or a taxonomy terms listing, add a markdown file with the base name `_index` on the relevant place on the file system.
 
-For the default Markdown content, the filename will be `_index.html`. 
+For the default Markdown content, the filename will be `_index.md`. 
 
 Se the example directory tree below. 
 
index f51fa5a81e12dcecb79cd327ef919b7d4a4f08ba..a2c560206be9de8c6d2abc00d8bdd666dbe09111 100644 (file)
@@ -992,9 +992,9 @@ The response of the GitHub API contains the base64-encoded version of the [READM
 
 
 ## .Site.GetPage
-Every `Page` as a `Kind` attribute that shows what kind of page it is. While this attribute can be used to list pages of a certain `kind` using `where`, often it can be useful to fetch a single page by its path.
+Every `Page` has a `Kind` attribute that shows what kind of page it is. While this attribute can be used to list pages of a certain `kind` using `where`, often it can be useful to fetch a single page by its path.
 
-GetPage looks up an index page of a given `Kind` and `path`. This method may support regular pages in the future, but currently it is a convenient way of getting the index pages such as the home page or a section from a template:
+`GetPage` looks up an index page of a given `Kind` and `path`. This method may support regular pages in the future, but currently it is a convenient way of getting the index pages, such as the home page or a section, from a template:
 
 ```
  {{ with .Site.GetPage "section" "blog" }}{{ .Title }}{{ end }}
index db24d3bb7862c7e5d647a03429696d0dab6a70ad..bcc060d3b0dbe0ad5fbd0f9a11e4b9047fdae635 100644 (file)
@@ -48,6 +48,7 @@ matter, content or derived from file location.
 **.LinkTitle** Access when creating links to this content. Will use `linktitle` if set in front matter, else `title`.<br>
 **.Next** Pointer to the following content (based on pub date).<br>
 **.NextInSection** Pointer to the following content within the same section (based on pub date)<br>
+**.Pages** a collection of associated pages. This will be nil for regular content pages. This is an alias for **.Data.Pages**.
 **.Permalink** The Permanent link for this page.<br>
 **.Prev** Pointer to the previous content (based on pub date).<br>
 **.PrevInSection** Pointer to the previous content within the same section (based on pub date). For example, `{{if .PrevInSection}}{{.PrevInSection.Permalink}}{{end}}`.<br>