{% assign sub-nav-tabs = site.data.sidebar-nav.pages %} {% if sub-nav-tabs %} {% assign page-base = page.url | split:'/' %} {% for each in sub-nav-tabs %} {% for each-url in each.urls %} {% if each-url == page.url %} {% if each.list %} {% assign tab-list = each.list %} {% endif %} {% elsif each.sub-pages-enabled %} {% if page.url contains each-url %} {% assign tab-list = each.list %} {% endif %} {% endif %} {% endfor %} {% if each.custom-include %} {% assign custom-include = each.custom-include %} {% endif %} {% endfor %} {% if tab-list %} {% elsif custom-include %} {% include {{custom-include}}.html %} {% else %} No sidebar content found - please add to _data/sidebar-nav.yml. More information available here. {% endif %} {% else %} No sidebar settings found - please create a _data/sidebar-nav.yml data file. More information available here. {% endif %}