2017-05-28 20:49:46 -04:00
|
|
|
<form class="bd-search d-flex align-items-center">
|
2017-01-26 06:12:39 -05:00
|
|
|
<input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off">
|
2017-08-15 07:41:34 -04:00
|
|
|
<button class="btn-link bd-search-docs-toggle d-md-none p-0 ml-3" type="button" data-toggle="collapse" data-target="#bd-docs-nav" aria-controls="bd-docs-nav" aria-expanded="false" aria-label="Toggle docs navigation">
|
2017-05-28 20:49:46 -04:00
|
|
|
{% include icons/menu.svg class="" width="30" height="30" %}
|
|
|
|
</button>
|
2015-12-26 19:29:18 -05:00
|
|
|
</form>
|
|
|
|
|
2017-05-28 20:49:46 -04:00
|
|
|
<nav class="collapse bd-links" id="bd-docs-nav">
|
2017-08-15 07:41:34 -04:00
|
|
|
{%- assign page_slug = page.url | split: '/' | last -%}
|
|
|
|
{%- for group in site.data.nav -%}
|
|
|
|
{%- assign link = group.pages | first -%}
|
|
|
|
{%- assign link_slug = link.title | slugify -%}
|
|
|
|
{%- assign group_slug = group.title | slugify -%}
|
|
|
|
{%- assign active = nil -%}
|
2015-12-26 19:29:18 -05:00
|
|
|
|
2017-08-15 07:41:34 -04:00
|
|
|
{%- if page.group == group_slug -%}
|
|
|
|
{%- assign active = 'active' -%}
|
|
|
|
{%- endif -%}
|
2015-12-26 19:29:18 -05:00
|
|
|
|
2017-08-15 07:41:34 -04:00
|
|
|
<div class="bd-toc-item{% unless active == nil %} {{ active }}{% endunless %}">
|
2017-05-29 01:50:57 -04:00
|
|
|
<a class="bd-toc-link" href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ group_slug }}/{{ link_slug }}{% if link_slug %}/{% endif %}">
|
2015-12-26 19:29:18 -05:00
|
|
|
{{ group.title }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<ul class="nav bd-sidenav">
|
2017-08-15 07:41:34 -04:00
|
|
|
{%- for doc in group.pages -%}
|
|
|
|
{%- assign doc_slug = doc.title | slugify -%}
|
|
|
|
{%- assign active = nil -%}
|
2015-12-26 19:29:18 -05:00
|
|
|
|
2017-08-15 07:41:34 -04:00
|
|
|
{%- if page.group == group_slug and page_slug == doc_slug -%}
|
|
|
|
{%- assign active = 'active bd-sidenav-active' -%}
|
|
|
|
{%- endif -%}
|
2015-12-26 19:29:18 -05:00
|
|
|
|
2017-08-15 07:41:34 -04:00
|
|
|
<li{% unless active == nil %} class="{{ active }}"{% endunless %}>
|
2017-05-29 01:50:57 -04:00
|
|
|
<a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ group_slug }}/{{ doc_slug }}/">
|
2015-12-26 19:29:18 -05:00
|
|
|
{{ doc.title }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{% comment %}
|
|
|
|
{% unless doc.sections == nil %}
|
|
|
|
<ul class="nav">
|
|
|
|
{% for section in doc.sections %}
|
|
|
|
<li>
|
|
|
|
<a href="#{{ section.title | downcase | replace: ' ', '-' }}">
|
|
|
|
{{ section.title }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endunless %}
|
|
|
|
{% endcomment %}
|
|
|
|
</li>
|
2017-08-15 07:41:34 -04:00
|
|
|
{%- endfor -%}
|
2015-12-26 19:29:18 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|
2017-08-15 07:41:34 -04:00
|
|
|
{%- endfor -%}
|
2015-12-26 19:29:18 -05:00
|
|
|
</nav>
|