summaryrefslogtreecommitdiff
path: root/site/themes/sine/layouts/_default/list.html
blob: c51e7d6d0c6973500877e3a38ea2335a9834e405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
<h1>{{ .Title }}</h1>

{{- .Content -}}

{{ range.Data.Pages }}
<article class="post-snippet">
  <h3>
    <a href="{{ .RelPermalink }}">{{ .Title }}</a>
  </h3>
	<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
		{{ .Date.Format "January 2, 2006" }}
	</time>
</article>
{{ end }}
{{ end }}