{% assign sub-nav-tabs = site.data.sticky-tab-bar.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 or each.url == page-base[1] %} {% if each.list %} {% 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 sticky-nav.yml content found - please add to _data/sticky-tab-bar.yml. More information available here. {% endif %} {% else %} No sidebar settings found - please create a _data/sticky-tab-bar.yml data file. More information available here. {% endif %}