{{ define "main" }}
{{ partial "content.html" . }} {{ if .Content }}
{{ 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 }}
{{ end }}