diff options
| author | Mark Otto <[email protected]> | 2014-07-12 02:25:07 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-12 02:25:07 -0700 |
| commit | c25bd1f03f24d6e64ea406c0543a09f76f4d9271 (patch) | |
| tree | 11bb62164c29911492e25c29950eab6d8dae218a /docs/_includes/docs-nav.html | |
| parent | 9bf9fb1faaff0b8cefb87718b0b610e6cde6e964 (diff) | |
| download | bootstrap-c25bd1f03f24d6e64ea406c0543a09f76f4d9271.tar.xz bootstrap-c25bd1f03f24d6e64ea406c0543a09f76f4d9271.zip | |
restore docs and homepage navs
Diffstat (limited to 'docs/_includes/docs-nav.html')
| -rw-r--r-- | docs/_includes/docs-nav.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/docs/_includes/docs-nav.html b/docs/_includes/docs-nav.html new file mode 100644 index 000000000..9d1d6e91f --- /dev/null +++ b/docs/_includes/docs-nav.html @@ -0,0 +1,61 @@ +<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 %} + + {% 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> + + <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 %} + + <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> +</header> |
