mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-30 01:43:32 -05:00
12 lines
276 B
HTML
12 lines
276 B
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 }}
|