{% assign sortedPages = site.pages | sort: "position" %}{% for otherPage in sortedPages %}{% assign depth = otherPage.path | split: '/' | size %}{% assign indexSuffix = "/index.md" %}{% assign indexSuffixLength = indexSuffix | size %}{% assign fileSuffixStart = otherPage.path | size | minus: indexSuffixLength %}{% assign fileSuffix = otherPage.path | slice: fileSuffixStart, indexSuffixLength %}{% assign indexSuffix2 = "/index.html" %}{% assign indexSuffixLength2 = indexSuffix2 | size %}{% assign fileSuffixStart2 = otherPage.path | size | minus: indexSuffixLength2 %}{% assign fileSuffix2 = otherPage.path | slice: fileSuffixStart2, indexSuffixLength2 %}{% if depth != 1 or otherPage.title == null %}{% if depth != 2 or (fileSuffix != indexSuffix and fileSuffix2 != indexSuffix2) %}{% continue %}{% endif %}{% endif %}{% if otherPage.layout == "redirect" %}{% assign urlLength = otherPage.content | size | minus: 8 %}{% assign url = otherPage.content | slice: 3, urlLength %}
{{ otherPage.title }}
{% else %}
{{ otherPage.title }}
{% endif %}{% endfor %}