1
Fork 0
theorangeone.net-legacy/layouts/_default/list.html

16 lines
439 B
HTML
Raw Normal View History

2017-10-27 22:56:44 +01:00
{{ define "main" }}
<div id="main">
<div class="container">
{{ partial "content.html" . }}
2017-11-03 22:33:30 +00:00
{{ if .Content }}
<hr />
{{ end }}
2018-08-19 12:00:54 +01:00
{{ $sorted_pages := sort .Site.Pages "Title" "asc" }}
2017-10-27 22:56:44 +01:00
{{ $valid_pages := where $sorted_pages ".Parent" "!=" nil }}
2018-08-19 12:00:54 +01:00
{{ range where $valid_pages ".Parent.UniqueID" .UniqueID }}
2017-10-27 22:56:44 +01:00
{{ partial "list_item.html" . }}
{{ end }}
</div>
</div>
{{ end }}