{% if page.sticky-tab-bar %} {% assign tab-list = page.sticky-tab-bar %} {% else %} {% assign sub-nav-tabs = site.data.sticky-tab-bar.pages %} {% endif %} {% 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 %} {% endif %} {% 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 %}