summaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: a76be32e7fef98809981d8ff0d5c68fddf5df123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" -}}
<ul class="posts">
  <h1>{{ .Title }}</h1>
  {{ range .Data.Pages -}}
  <li>
    <div class="flex">
      <a href="{{ .Permalink }}" class="truncate">{{ .Title }}</a>
			{{ if not .Date.IsZero }}
				{{ if eq .Kind "page" }}
				<time class="nowrap" datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
				{{ end }}
			{{ end }}
    </div>
  </li>
  {{- end }}
</ul>
{{- end }}