shithub: hugo

ref: 629e1439e819a7118ae483381d4634f16d3474dd
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 }}