-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
megamenu local navigation stepbar pagination pointed tabs footer
- Loading branch information
1 parent
f5098f9
commit ec34d40
Showing
23 changed files
with
922 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
- title: Getting started | ||
pages: | ||
- title: Introduction | ||
- title: Download | ||
- title: Browsers & devices | ||
- title: Options | ||
- title: Flexbox | ||
- title: Build tools | ||
- title: Best practices | ||
|
||
- title: Layout | ||
pages: | ||
- title: Overview | ||
- title: Grid | ||
- title: Media object | ||
- title: Responsive utilities | ||
|
||
- title: Content | ||
pages: | ||
- title: Reboot | ||
- title: Typography | ||
- title: Code | ||
- title: Images | ||
- title: Tables | ||
- title: Figures | ||
|
||
- title: Components | ||
pages: | ||
- title: Buttons | ||
- title: Button group | ||
- title: Button dropdown | ||
- title: Forms | ||
- title: Input group | ||
- title: Dropdowns | ||
- title: Jumbotron | ||
- title: Label | ||
- title: Alerts | ||
- title: Card | ||
- title: Navs | ||
- title: Navbar | ||
# boosted mod | ||
- title: Orange pointed tabs | ||
- title: Local navigation | ||
- title: Orange megamenu | ||
- title: Orange footer | ||
# end mod | ||
- title: Breadcrumb | ||
# boosted mod | ||
- title: Stepbar | ||
# end mod | ||
- title: Pagination | ||
# boosted mod | ||
- title: Orange Pagination | ||
# end mod | ||
- title: Progress | ||
- title: List group | ||
- title: Modal | ||
- title: Scrollspy | ||
- title: Tooltips | ||
- title: Popovers | ||
- title: Collapse | ||
# boosted mod | ||
- title: Orange accordion | ||
# end mod | ||
- title: Carousel | ||
- title: Utilities | ||
|
||
# - title: Extend | ||
# pages: | ||
# - title: Approach | ||
# - title: Icon fonts | ||
|
||
- title: About | ||
pages: | ||
- title: History | ||
- title: Team | ||
- title: Accessibility | ||
- title: Brand | ||
- title: License | ||
- title: Translations | ||
|
||
- title: Migration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<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' %} | ||
{% 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> | ||
<!-- boosted mod --> | ||
<a href="#" class="scrollup"><span class="sr-only">scroll to top</span></a> | ||
<!-- end mod --> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.