{% include before-content.html %}

{{ page.title }}

{% assign urlLength = page.url | size %}{% for otherPage in site.pages %}{% assign urlPrefix = otherPage.url | slice: 0, urlLength %}{% unless urlPrefix != page.url or page.url == otherPage.url or ignored contains otherPage.url %}

{{ otherPage.title }}

{% if otherPage.content != null %} {{ otherPage.content }} {% endif %}{% assign otherPageUrlLength = otherPage.url | size %}{% for static_file in site.static_files %}{% assign ignoredThumbnailSuffix = ".thumb.jpg" %}{% assign thumbnailSuffixLength = ignoredThumbnailSuffix | size %}{% assign thumbnailSuffixStart = static_file.path | size | minus: thumbnailSuffixLength %}{% assign urlPrefix = static_file.path | slice: 0, otherPageUrlLength %}{% assign urlSuffix = static_file.path | slice: thumbnailSuffixStart, thumbnailSuffixLength %}{% unless urlPrefix != otherPage.url or urlSuffix == ignoredThumbnailSuffix %} {{ static_file.basename | replace: "-", " " | replace: "_", " " }} {% endunless %}{% endfor %}{% endunless %}{% endfor %}{% include after-content.html %}