--- layout: default icons: true header_class: short body_class: package-nav-open --- {% assign section_name = page.package | downcase %} {% assign package = site.collections | where: "title", page.package | first %} {% assign sorted_sections = site.sections | sort: "order_number" %} {% assign prev_section = null %} {% assign current_section = null %} {% assign next_section = null %} {% for section in sorted_sections %} {% unless next_section %} {% if page.url contains section.url %} {% assign current_section = section %} {% elsif current_section %} {% assign next_section = section %} {% else %} {% assign prev_section = section %} {% endif %} {% endunless %} {% endfor %} {% assign prev = null %} {% assign current = null %} {% assign next = null %} {% if package.docs %} {% assign items = package.docs | sort: "order_number" %} {% for item in items %} {% unless next %} {% if item.url == page.url %} {% assign current = item %} {% elsif current %} {% assign next = item %} {% else %} {% assign prev = item %} {% endif %} {% endunless %} {% endfor %} {% endif %}
{% include navigation/top.html %}
{% include navigation/collection-nav.html docs_nav=true %}
{% include navigation/mobile-doc-selector.html %}

{{ page.package }}

{% if page.heading %}

{{ page.heading }}

{% elsif page.title %}

{{ page.title }}

{% elsif page.name %}

{{ page.name }}

{% endif %} {% if page.subtitle %}

{{ page.subtitle }}

{% elsif page.description %}

{{ page.description }}

{% endif %} Edit package {% if current_section.wip %}

This package is a work-in-progress. Some aspects may be awaiting improvement.

{% endif %} {{ content }}
{% if current_section %}
{% if prev %}
arrow_back {% if page.package %}

{{ page.package }}

{% endif %}

{{ prev.title }}

Read previous doc
{% elsif prev_section %} {% assign prev_package = site.collections | where: "title", prev_section.name | first %} {% if prev_package.docs %}
{{prev_section.icon}} {% assign last_in_package = prev_package.docs | sort: "order_number" | last %}

{{ last_in_package.package }}

{{ last_in_package.title }}

Go back to {{ prev_section.name }}
{% endif %} {% endif %} {% if next %}
arrow_forward {% if page.package %}

{{ page.package }}

{% endif %}

{{ next.title }}

Read next doc
{% elsif next_section %} {% assign next_package = site.collections | where: "title", next_section.name | first %} {% if next_package.docs %}
{{ next_section.icon }} {% assign next_in_package = next_package.docs | sort: "order_number" | first %}

{{ next_in_package.package }}

{{ next_in_package.title }}

Move onto {{ next_section.name }}
{% endif %} {% else %}
chat

Let's Chat

If you couldn't find what you needed, send us a message.

Contact Support
{% endif %}
{% else %}
chat

Let's Chat

If you couldn't find what you needed, send us a message.

Contact Support
{% endif %}