Use .Site.Pages in the documentation examples instead of .Site.Recent
authorGustav Näslund <naslund.gustav@gmail.com>
Mon, 30 Nov 2015 19:52:30 +0000 (20:52 +0100)
committerAnthony Fok <foka@debian.org>
Tue, 1 Dec 2015 06:31:18 +0000 (23:31 -0700)
docs/content/templates/functions.md
docs/content/templates/go-templates.md

index 8ffa1829d4f43536c2cc4943df6cb5a09352eb9b..18c8b3aeda8159cbdcaeebbdbc4cb65a2d809222 100644 (file)
@@ -161,7 +161,7 @@ e.g.
     <ul>
     {{ $page_link := .Permalink }}
     {{ $tags := .Params.tags }}
-    {{ range .Site.Recent }}
+    {{ range .Site.Pages }}
         {{ $page := . }}
         {{ $has_common_tags := intersect $tags .Params.tags | len | lt 0 }}
         {{ if and $has_common_tags (ne $page_link $page.Permalink) }}
@@ -259,7 +259,7 @@ e.g.
     series: golang
     +++
 
-    {{ range where .Site.Recent "Params.series" "golang" }}
+    {{ range where .Site.Pages "Params.series" "golang" }}
        {{ .Content }}
     {{ end }}
 
index e66af25f18821c244942450f239211511096862b..90a2d4111ad71a9777a9a6a25092ce96c8838e0f 100644 (file)
@@ -382,7 +382,7 @@ so, such as in this example:
 ```
 <nav class="recent">
   <h1>Recent Posts</h1>
-  <ul>{{range first .Site.Params.SidebarRecentLimit .Site.Recent}}
+  <ul>{{range first .Site.Params.SidebarRecentLimit .Site.Pages}}
     <li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
   {{end}}</ul>
 </nav>