aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/docs-nav.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-12-01 15:41:11 -0800
committerMark Otto <[email protected]>2014-12-01 15:41:11 -0800
commit75943868be04a76bb374b9f8347a3174596bb8ac (patch)
treedff8fdc2de97532bc47939dfe5c98f69eb40f7d2 /docs/_includes/docs-nav.html
parent639a211344ea8720a860befb775c06c6d3cf3a76 (diff)
downloadbootstrap-75943868be04a76bb374b9f8347a3174596bb8ac.tar.xz
bootstrap-75943868be04a76bb374b9f8347a3174596bb8ac.zip
update home and side nav to use new navbar structure
Diffstat (limited to 'docs/_includes/docs-nav.html')
-rw-r--r--docs/_includes/docs-nav.html94
1 files changed, 41 insertions, 53 deletions
diff --git a/docs/_includes/docs-nav.html b/docs/_includes/docs-nav.html
index cc8e64d43..0ab8cd33b 100644
--- a/docs/_includes/docs-nav.html
+++ b/docs/_includes/docs-nav.html
@@ -1,61 +1,49 @@
<header class="navbar navbar-static-top bs-docs-sidebar" id="top" role="banner">
- <div class="container-fluid">
- <div class="navbar-header">
- <button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-sidenav-collapse">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a href="{{ site.baseurl }}" class="navbar-brand">
- Bootstrap
- </a>
- </div>
- <nav class="collapse navbar-collapse bs-sidenav-collapse" role="navigation">
- {% for group in site.data.nav %}
- {% assign link = group.pages | first %}
- {% assign slug = group.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' %}
- {% assign active = nil %}
+ <a href="{{ site.baseurl }}" class="navbar-brand">
+ Bootstrap
+ </a>
+ {% 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 %}
+ {% if page.url contains slug %}
+ {% assign active = 'active' %}
+ {% endif %}
- <div class="bs-docs-toc-item {{ active }}">
- <a class="bs-docs-toc-link" href="{{ site.baseurl }}{{ group.title | downcase | replace: ' ', '-' }}/{{ link.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' }}">
- {{ group.title }}
- </a>
+ <div class="bs-docs-toc-item {{ active }}">
+ <a class="bs-docs-toc-link" href="{{ site.baseurl }}{{ group.title | downcase | replace: ' ', '-' }}/{{ link.title | downcase | replace: ' ', '-' || page.title | downcase | replace: ' ', '-' }}">
+ {{ group.title }}
+ </a>
- <ul class="nav bs-docs-sidenav">
- {% for doc in group.pages %}
- {% assign slug = doc.title | downcase | replace: ' ', '-' %}
- {% assign active = nil %}
+ <ul class="nav bs-docs-sidenav">
+ {% for doc in group.pages %}
+ {% assign slug = doc.title | downcase | replace: ' ', '-' %}
+ {% assign active = nil %}
- {% if page.url contains slug %}
- {% assign active = 'active' %}
- {% endif %}
+ {% if page.url contains slug %}
+ {% assign active = 'active' %}
+ {% endif %}
- <li class="{{ active }}">
- <a href="{{ site.baseurl }}{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' }}">
- {{ doc.title }}
- </a>
+ <li class="{{ active }}">
+ <a href="{{ site.baseurl }}{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' }}">
+ {{ doc.title }}
+ </a>
- {% unless doc.sections == nil %}
- <ul class="nav">
- {% for section in doc.sections %}
- <li>
- <a href="{{ site.baseurl }}{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' }}/#{{ section.title | downcase | replace: ' ', '-' }}">
- {{ section.title }}
- </a>
- </li>
- {% endfor %}
- </ul>
- {% endunless %}
- </li>
- {% endfor %}
- </ul>
- </div>
- {% endfor %}
- </nav>
- </div>
+ {% unless doc.sections == nil %}
+ <ul class="nav">
+ {% for section in doc.sections %}
+ <li>
+ <a href="{{ site.baseurl }}{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' }}/#{{ section.title | downcase | replace: ' ', '-' }}">
+ {{ section.title }}
+ </a>
+ </li>
+ {% endfor %}
+ </ul>
+ {% endunless %}
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
+ {% endfor %}
</header>