{% assign all_pages = site.data.navigation.chapters | concat: site.data.navigation.concepts | concat: site.data.navigation.sources | concat: site.data.navigation.examples %} {% assign last_item = nil %} {% assign previous_item = nil %} {% assign next_item = nil %} {% assign found_current = false %} {% for item in all_pages %} {% if found_current %} {% assign next_item = item %} {% break %} {% endif %} {% if item.url == page.url %} {% assign previous_item = last_item %} {% assign found_current = true %} {% endif %} {% assign last_item = item %} {% endfor %} {% if previous_item or next_item %} {% endif %}