Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
c25bd1f0
Commit
c25bd1f0
authored
10 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
restore docs and homepage navs
parent
9bf9fb1f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/_includes/docs-nav.html
+61
-0
docs/_includes/docs-nav.html
docs/_includes/home-nav.html
+36
-0
docs/_includes/home-nav.html
docs/_layouts/default.html
+1
-1
docs/_layouts/default.html
docs/_layouts/home.html
+1
-1
docs/_layouts/home.html
with
99 additions
and
2 deletions
+99
-2
docs/_includes/docs-nav.html
0 → 100644
+
61
-
0
View file @
c25bd1f0
<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>
This diff is collapsed.
Click to expand it.
docs/_includes/home-nav.html
0 → 100644
+
36
-
0
View file @
c25bd1f0
<header
class=
"navbar navbar-inverse navbar-static-top bs-docs-nav"
id=
"top"
role=
"banner"
>
<div
class=
"container"
>
<div
class=
"navbar-header"
>
<button
class=
"navbar-toggle collapsed"
type=
"button"
data-toggle=
"collapse"
data-target=
".bs-navbar-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=
"../"
class=
"navbar-brand"
>
Bootstrap
</a>
</div>
<nav
class=
"collapse navbar-collapse bs-navbar-collapse"
role=
"navigation"
>
<ul
class=
"nav navbar-nav"
>
<li
{%
if
page.slug =
=
"
getting-started
"
%}
class=
"active"
{%
endif
%}
>
<a
href=
"../getting-started"
>
Getting started
</a>
</li>
<li
{%
if
page.slug =
=
"
css
"
%}
class=
"active"
{%
endif
%}
>
<a
href=
"../css"
>
CSS
</a>
</li>
<li
{%
if
page.slug =
=
"
components
"
%}
class=
"active"
{%
endif
%}
>
<a
href=
"../components"
>
Components
</a>
</li>
<li
{%
if
page.slug =
=
"
js
"
%}
class=
"active"
{%
endif
%}
>
<a
href=
"../javascript"
>
JavaScript
</a>
</li>
<li
{%
if
page.slug =
=
"
customize
"
%}
class=
"active"
{%
endif
%}
>
<a
href=
"../customize"
>
Customize
</a>
</li>
</ul>
<ul
class=
"nav navbar-nav navbar-right"
>
<li><a
href=
"{{ site.expo }}"
onclick=
"ga('send', 'event', 'Navbar', 'Community links', 'Expo');"
>
Expo
</a></li>
<li><a
href=
"{{ site.blog }}"
onclick=
"ga('send', 'event', 'Navbar', 'Community links', 'Blog');"
>
Blog
</a></li>
</ul>
</nav>
</div>
</header>
This diff is collapsed.
Click to expand it.
docs/_layouts/default.html
+
1
-
1
View file @
c25bd1f0
...
...
@@ -7,7 +7,7 @@
<body
class=
"bs-docs"
>
<a
class=
"sr-only sr-only-focusable"
href=
"#content"
>
Skip to main content
</a>
{% include
nav/
docs.html %}
{% include docs
-nav
.html %}
<div
class=
"bs-docs-header"
id=
"content"
>
<div
class=
"bs-docs-container"
>
...
...
This diff is collapsed.
Click to expand it.
docs/_layouts/home.html
+
1
-
1
View file @
c25bd1f0
...
...
@@ -8,7 +8,7 @@
<a
class=
"sr-only sr-only-focusable"
href=
"#content"
>
Skip to main content
</a>
<!-- Docs master nav -->
{% include
nav/
home.html %}
{% include home
-nav
.html %}
<!-- Page content of course! -->
{{ content }}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment