{% include title.html %}
{% assign pages_top_size = site.html_pages | where_exp:"item", "item.title != nil" | where_exp:"item", "item.parent == nil" | where_exp:"item", "item.nav_exclude != true" | size %} {% if pages_top_size > 0 %} {% include nav.html pages=site.html_pages key=nil %} {% endif %} {%- if site.nav_external_links -%}
    {%- for node in site.nav_external_links -%}
  • {{ node.title }} {% unless node.hide_icon %}{% endunless %}
  • {%- endfor -%}
{%- endif -%} {% if site.just_the_docs.collections %} {% assign collections_size = site.just_the_docs.collections | size %} {% for collection_entry in site.just_the_docs.collections %} {% assign collection_key = collection_entry[0] %} {% assign collection_value = collection_entry[1] %} {% assign collection = site[collection_key] %} {% if collection_value.nav_exclude != true %} {% if collections_size > 1 or pages_top_size > 0 %} {% if collection_value.nav_fold == true %}
  • {%- if collection.size > 0 -%} {%- endif -%}
    {{ collection_value.name }}
    {% include nav.html pages=collection key=collection_key %}
{% else %}
{{ collection_value.name }}
{% include nav.html pages=collection key=collection_key %} {% endif %} {% else %} {% include nav.html pages=collection key=collection_key %} {% endif %} {% endif %} {% endfor %} {% endif %}
{% capture nav_footer_custom %} {%- include nav_footer_custom.html -%} {% endcapture %} {% if nav_footer_custom != "" %} {{ nav_footer_custom }} {% else %}
This site uses Just the Docs, a documentation theme for Jekyll.
{% endif %}