aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/nav-docs.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-05-28 22:50:57 -0700
committerMark Otto <[email protected]>2017-05-29 23:32:28 -0700
commit3e76d6565603fafa2c85ad81d7b6345c4e279c72 (patch)
treefad0aa6a4a70cafb4a803bd920d6ae2fa44dc466 /docs/_includes/nav-docs.html
parent32153eb7cba316b873e82cd7b9362c92ca00eddf (diff)
downloadbootstrap-3e76d6565603fafa2c85ad81d7b6345c4e279c72.tar.xz
bootstrap-3e76d6565603fafa2c85ad81d7b6345c4e279c72.zip
Rearrange all the docs to allow for a docs/major.minor/ setup
Diffstat (limited to 'docs/_includes/nav-docs.html')
-rw-r--r--docs/_includes/nav-docs.html57
1 files changed, 0 insertions, 57 deletions
diff --git a/docs/_includes/nav-docs.html b/docs/_includes/nav-docs.html
deleted file mode 100644
index f34789234..000000000
--- a/docs/_includes/nav-docs.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<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 }}/{{ 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 }}/{{ 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>