20 lines
809 B
HTML
20 lines
809 B
HTML
{{ partial "page_start.html" . }}
|
|
<section id="main" class="container">
|
|
{{ partial "content.html" . }}
|
|
{{ if ne .Params.hide_pages "true" }}
|
|
<div class="row">
|
|
{{ $parent := . }}
|
|
{{ $sorted_pages := sort .Site.Pages (default "Title" .Params.sort_by) (default "asc" .Params.sort_order)}}
|
|
{{ $valid_pages := where $sorted_pages ".Parent" "!=" nil }}
|
|
{{ $valid_pages := where $valid_pages ".Params.hide_in_list" "!=" "true" }}
|
|
{{ range where $valid_pages ".Parent.UniqueID" $parent.UniqueID }}
|
|
{{ if $parent.Params.show_images }}
|
|
{{ partial "box_image.html" . }}
|
|
{{ else }}
|
|
{{ partial "box.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
{{ partial "page_end.html" . }}
|