aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/polaris/layouts/partials/posts.html
blob: 36f6275c48302225233caca802d32ed051833937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ $pages := where site.RegularPages "Section" "posts" }}
{{ $pagesLen := (len $pages) }}

{{ if eq $pagesLen 0 }}
<p>There's nothing here!</p>
{{ else }}
<h2>Posts</h2>
<ul>
  {{ range $index, $element := $pages }}
  <li><a href = "{{ .Permalink }}">{{ .Title }}</a> ({{ .Date | time.Format "Jan 02 2006" }})</li>
  {{ end }}
</ul>
{{ end }}