Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDave Johnston <johnsto@gmail.com>2014-04-18 11:23:13 +0400
committerbep <bjorn.erik.pedersen@gmail.com>2015-01-05 20:26:09 +0300
commita5f5106154ac1f5cd0d84a5a2212b0ec500edc21 (patch)
treeedf02dde9a3913cb1718e8ff75bb04aacfeaff9b /docs
parent837922d32bc1d0d2fbc50af07947e6b858df1550 (diff)
Add in-section Next/Prev content pointers
Conflicts: docs/content/meta/release-notes.md docs/content/templates/variables.md
Diffstat (limited to 'docs')
-rw-r--r--docs/content/meta/release-notes.md4
-rw-r--r--docs/content/templates/variables.md2
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/content/meta/release-notes.md b/docs/content/meta/release-notes.md
index e26d7d7dc..a55b00ae8 100644
--- a/docs/content/meta/release-notes.md
+++ b/docs/content/meta/release-notes.md
@@ -10,6 +10,7 @@ title: Release Notes
weight: 10
---
+
## **0.12.0** Sept 1, 2014
A lot has happened since Hugo v0.11.0 was released. Most of the work has been
@@ -56,6 +57,9 @@ This release represents over 110 code commits from 29 different contributors.
* Renamed Indexes > [Taxonomies](/taxonomies/overview)
* Renamed Chrome > [Partials](/templates/partials)
+## Next release
+ * Added section Prev/Next pointers.
+
## **0.10.0** March 1, 2014
This release represents over 110 code commits from 29 different contributors.
diff --git a/docs/content/templates/variables.md b/docs/content/templates/variables.md
index 054adfba3..93f5ad02b 100644
--- a/docs/content/templates/variables.md
+++ b/docs/content/templates/variables.md
@@ -39,6 +39,8 @@ matter, content or derived from file location.
**.TableOfContents** The rendered table of contents for this content.<br>
**.Prev** Pointer to the previous content (based on pub date).<br>
**.Next** Pointer to the following content (based on pub date).<br>
+**.PrevInSection** Pointer to the previous content within the same section (based on pub date)<br>
+**.NextInSection** Pointer to the following content within the same section (based on pub date)<br>
**.FuzzyWordCount** The approximate number of words in the content.<br>
**.WordCount** The number of words in the content.<br>
**.ReadingTime** The estimated time it takes to read the content in minutes.<br>