Back to Go Micro

{% if page.title %}{{ page.title }}

internal/website/_layouts/default.html

5.19.1782 B
Original Source

{% 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 %}