summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRachel Simone Weil <partytimehexcellent@gmail.com>2017-04-16 00:51:57 -0500
committerdigitalcraftsman <digitalcraftsman@protonmail.com>2017-04-16 13:22:24 +0200
commitb5e32eb60993b4656918af2c959ae217a68c461e (patch)
tree90fb178d2b94162b5e643384d307123636d4b4ff /docs
parent66ec6305f6cb450ddf9c489854146bac02f7dca1 (diff)
docs: Fix .Data.Pages range in sample
Diffstat (limited to 'docs')
-rw-r--r--docs/content/templates/list.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/templates/list.md b/docs/content/templates/list.md
index 0c877bd2b..ed006c576 100644
--- a/docs/content/templates/list.md
+++ b/docs/content/templates/list.md
@@ -255,7 +255,7 @@ The below example sorts a list of posts by their rating.
If the frontmatter field of interest is nested beneath another field, you can
also get it:
- {{ range (.Date.Pages.ByParam "author.last_name") }}
+ {{ range (.Data.Pages.ByParam "author.last_name") }}
<!-- ... -->
{{ end }}