wires

summary refs log tree commit diff
path: root/layouts/index.html
blob: 2289aace0a4f82147502d2d1690a685f25b7685d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }} {{ .Content }} {{ with .Site.RegularPages }}
<h2>Posts</h2>
<ul>
  {{ range . }}
  <li>
    <a href="{{ .Permalink }}">{{ .Title }}</a>
    <time datetime="{{ .Lastmod }}">
      {{ .Lastmod.Format "January 2, 2006" }}
    </time>
  </li>
  {{ end }}
</ul>
{{ end }} {{ end }}