shithub: hugo

Download patch

ref: 448f0306d79c32089ad148e131063b6fb836454e
parent: 02d2f05e7455f12ee4598af6fef2346180d2abfd
author: Hanchen Wang <[email protected]>
date: Wed May 11 06:16:44 EDT 2016

docs: Example of how to use Order by ExpiryDate

--- a/docs/content/templates/list.md
+++ b/docs/content/templates/list.md
@@ -187,6 +187,15 @@
     <div class="meta">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</div>
     </li>
     {{ end }}
+
+### Order by ExpiryDate
+
+    {{ range .Data.Pages.ByExpiryDate }}
+    <li>
+    <a href="{{ .Permalink }}">{{ .Title }}</a>
+    <div class="meta">{{ .ExpiryDate.Format "Mon, Jan 2, 2006" }}</div>
+    </li>
+    {{ end }}
     
 ### Order by Lastmod