diff options
| author | Mark Otto <[email protected]> | 2016-01-03 19:13:44 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-01-03 19:13:44 -0800 |
| commit | 5c43dff1559424efba4515fd6d1f19e7e1a864d4 (patch) | |
| tree | 7e741e92bab3cd7410002135547ec9d9e783ba80 /docs | |
| parent | 0a3573b235413c99b441c4ae6fc9afb3f1afa3a9 (diff) | |
| parent | 38b40d8f59138a2e9029f2dc5eac9d01f181534b (diff) | |
| download | bootstrap-5c43dff1559424efba4515fd6d1f19e7e1a864d4.tar.xz bootstrap-5c43dff1559424efba4515fd6d1f19e7e1a864d4.zip | |
Merge pull request #18697 from bassjobsen/patch-31
remove `<div class="bd-sidebar">`
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_includes/nav-docs.html | 115 |
1 files changed, 56 insertions, 59 deletions
diff --git a/docs/_includes/nav-docs.html b/docs/_includes/nav-docs.html index 7d74f5352..fa2984188 100644 --- a/docs/_includes/nav-docs.html +++ b/docs/_includes/nav-docs.html @@ -1,60 +1,57 @@ -<div class="bd-sidebar"> - - <form class="bd-search hidden-sm-down"> - <input type="text" class="form-control" id="search-input" placeholder="Search..." autocomplete="off"> - <div class="dropdown-menu bd-search-results" id="search-results"></div> - </form> - - <nav class="bd-links" id="docsNavbarContent"> - {% for group in site.data.nav %} - {% assign link = group.pages | first %} - {% assign slug = group.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' %} - {% assign active = nil %} - - {% if page.url contains slug %} - {% assign active = 'active' %} +<form class="bd-search hidden-sm-down"> + <input type="text" class="form-control" id="search-input" placeholder="Search..." autocomplete="off"> + <div class="dropdown-menu bd-search-results" id="search-results"></div> +</form> + +<nav class="bd-links" id="docsNavbarContent"> + {% for group in site.data.nav %} + {% assign link = group.pages | first %} + {% assign slug = group.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' %} + {% assign active = nil %} + + {% if page.url contains slug %} + {% assign active = 'active' %} + {% endif %} + + <div class="bd-toc-item {{ active }}"> + {% if slug == "examples" %} + <a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/"> + {% else %} + <a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ link.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' }}"> {% endif %} - - <div class="bd-toc-item {{ active }}"> - {% if slug == "examples" %} - <a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/"> - {% else %} - <a class="bd-toc-link" href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ link.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' }}"> - {% endif %} - {{ group.title }} - </a> - - <ul class="nav bd-sidenav"> - {% for doc in group.pages %} - {% assign slug = doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' %} - {% assign active = nil %} - - {% if page.url contains slug %} - {% assign active = 'active bd-sidenav-active' %} - {% endif %} - - <li class="{{ active }}"> - <a href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' }}"> - {{ 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> -</div> + {{ group.title }} + </a> + + <ul class="nav bd-sidenav"> + {% for doc in group.pages %} + {% assign slug = doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' %} + {% assign active = nil %} + + {% if page.url contains slug %} + {% assign active = 'active bd-sidenav-active' %} + {% endif %} + + <li class="{{ active }}"> + <a href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' }}"> + {{ 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> |
