ref: d6957c192d43e9ee8d64c3ebdfb4897e0a3077f1
dir: /docs/layouts/_default/list.html/
{{ define "main" }}
{{ with .Content }}
{{ . }}
{{ end }}
<ul style="margin-top: 20px">
{{ range .Data.Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a> <em>Updated {{ .Lastmod.Format "Mon, Jan 2, 2006" }}</em>
</li>
{{ end }}
</ul>
{{ end }}