1
Fork 0
theorangeone.net-legacy/layouts/_default/list.html
Jake Howard d95f1e1bf0
Update templates so getting child pages is more sane
I think this is a layover from when I tried to do weird things
2020-02-22 15:25:03 +00:00

14 lines
319 B
HTML

{{ define "main" }}
<div id="main">
<div class="container">
{{ partial "content.html" . }}
{{ if .Content }}
<hr />
{{ end }}
{{ $unique_id := .File.UniqueID }}
{{ range .Pages.ByTitle }}
{{ partial "list_item.html" . }}
{{ end }}
</div>
</div>
{{ end }}