hugo/docs/layouts/_default/list.html
Bjørn Erik Pedersen ae1de7abb1 docs: Make the tools content page a section page
Because it is the right solution and it the avoids naming conflict with section vs page.

Updates #2297
2016-11-22 09:57:03 +01:00

13 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 }}