{{/* List sections (default value is true) */}} {{ if (or (not (isset .Params "showsections")) (.Params.showsections)) }} {{ if .Sections }}
{{ with .Params.sections_title }}

{{ . }}

{{ end }} {{/* Sort the list */}} {{ partial "utils/ordered-list.html" (dict "list" .Sections "params" .Params "scratch" .Scratch) }}
{{ range (.Scratch.Get "list") }} {{ .Render "limage" }} {{ end }}
{{ .Scratch.Delete "list" }}

{{ end }} {{ end }} {{/* List posts (default value is true) */}} {{ if (or (not (isset .Params "showposts")) (.Params.showposts)) }} {{ if .Pages }}
{{ with .Params.posts_title }}

{{ . }}

{{ end }} {{/* Sort the list */}} {{ partial "utils/ordered-list.html" (dict "list" .Pages "params" .Params "scratch" .Scratch) }} {{ .Scratch.Delete "list" }}
{{ end }} {{ end }}