Go Micro Logo Go Micro
{% assign crumbs = page.url | split:'/' %} {% assign docs_root = site.baseurl | append: '/' %} {% if page.url != docs_root and page.url contains docs_root %} {% endif %} {{ content }} {% assign order = site.data.navigation.search_order %} {% if page.url %} {% assign current_index = -1 %} {% for u in order %} {% if u == page.url %}{% assign current_index = forloop.index0 %}{% endif %} {% endfor %} {% if current_index != -1 %}
{% if current_index > 0 %} {% assign prev_url = order[current_index | minus: 1] %} ← Previous {% endif %}
{% assign next_index = current_index | plus: 1 %} {% if next_index < order.size %} {% assign next_url = order[next_index] %} Next → {% endif %}
{% endif %} {% endif %}