shithub: hugo

ref: 62e9e7e6ba3eee386c95d0420386132ad8acaa7e
dir: /docs/layouts/_default/list.html/

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