shithub: hugo

ref: e00f5c9c0724001c6a550029587683aa30e8d626
dir: /docs/layouts/_default/list.html/

View raw version
{{ 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 }}