--- layout: default ---
{{ content }} {% for doc in site.pages %} {% if page.next == doc.path %} {% assign next = doc %} {% endif %} {% if doc.next == page.path %} {% assign previous = doc %} {% endif %} {% endfor %}
{% if previous %} {% octicon chevron-left class:"v-align-text-bottom" %} {{ previous.title }} {% endif %}
{% if next %} {{ next.title }} {% octicon chevron-right class:"v-align-text-bottom" %} {% endif %}

Found a mistake or want to help improve this documentation? Suggest changes on GitHub

{% for section in site.data.toc %}

{{ section[0] }}

    {% for item in section[1] %}
  • {% if item.url %} {% assign link = item %} {% else %} {% for doc in site.pages %} {% if doc.path == item %} {% assign link = doc %} {% break %} {% endif %} {% endfor %} {% endif %} {% if page.url == link.url %} {% assign classes = "text-brand-red" %} {% else %} {% assign classes = "text-gray-light" %} {% endif %} {{ link.title }}
  • {% endfor %}
{% endfor %}