1
Fork 0
theorangeone.net-legacy/layouts/_default/list.html
2018-08-19 12:00:54 +01:00

15 lines
439 B
HTML

{{ define "main" }}
<div id="main">
<div class="container">
{{ partial "content.html" . }}
{{ if .Content }}
<hr />
{{ end }}
{{ $sorted_pages := sort .Site.Pages "Title" "asc" }}
{{ $valid_pages := where $sorted_pages ".Parent" "!=" nil }}
{{ range where $valid_pages ".Parent.UniqueID" .UniqueID }}
{{ partial "list_item.html" . }}
{{ end }}
</div>
</div>
{{ end }}