diff options
| author | Mark Otto <[email protected]> | 2017-05-30 13:25:26 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-05-30 13:25:26 -0700 |
| commit | 92cfca79b1189b4cd89a8b71ba517466e0826bf3 (patch) | |
| tree | ebe0a190b504ab24092b07fa8d9cf29735d4ed04 /_includes/docs-sidebar.html | |
| parent | f8d1dc4d04fa341c2900de9a2ea01f3ecd8753b2 (diff) | |
| download | bootstrap-92cfca79b1189b4cd89a8b71ba517466e0826bf3.tar.xz bootstrap-92cfca79b1189b4cd89a8b71ba517466e0826bf3.zip | |
rename files
Diffstat (limited to '_includes/docs-sidebar.html')
| -rw-r--r-- | _includes/docs-sidebar.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/_includes/docs-sidebar.html b/_includes/docs-sidebar.html new file mode 100644 index 000000000..71ea14f7d --- /dev/null +++ b/_includes/docs-sidebar.html @@ -0,0 +1,57 @@ +<form class="bd-search d-flex align-items-center"> + <input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off"> + <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 avigation"> + {% include icons/menu.svg class="" width="30" height="30" %} + </button> +</form> + +<nav class="collapse bd-links" id="bd-docs-nav"> + {% 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 %} + + {% if page.group == group_slug %} + {% assign active = 'active' %} + {% endif %} + + <div class="bd-toc-item {{ active }}"> + <a class="bd-toc-link" href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ group_slug }}/{{ link_slug }}{% if link_slug %}/{% endif %}"> + {{ group.title }} + </a> + + <ul class="nav bd-sidenav"> + {% for doc in group.pages %} + {% assign doc_slug = doc.title | slugify %} + {% assign active = nil %} + + {% if page.group == group_slug and page_slug == doc_slug %} + {% assign active = 'active bd-sidenav-active' %} + {% endif %} + + <li class="{{ active }}"> + <a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/{{ group_slug }}/{{ doc_slug }}/"> + {{ 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> + {% endfor %} + </ul> + </div> + {% endfor %} +</nav> |
