diff options
| author | Ivan Khalopik <[email protected]> | 2013-05-27 11:06:31 +0300 |
|---|---|---|
| committer | Ivan Khalopik <[email protected]> | 2013-05-27 11:06:31 +0300 |
| commit | 3285f4c3062f4a56eaed2461a3128a2e6a3ba9cc (patch) | |
| tree | 5fa0a3d3556a83cd96147da46e90ae9f361d8efc /docs/_layouts/default.html | |
| parent | 3c7a43a1f373d0c534476578b96a75ae2e63c985 (diff) | |
| parent | 7cbb1c0452a1d9904f7655aea78644def85b7f2e (diff) | |
| download | bootstrap-3285f4c3062f4a56eaed2461a3128a2e6a3ba9cc.tar.xz bootstrap-3285f4c3062f4a56eaed2461a3128a2e6a3ba9cc.zip | |
Merge remote-tracking branch 'bootstrap/3.0.0-wip' into 3.0.0-wip
Conflicts:
js/bootstrap-collapse.js
Diffstat (limited to 'docs/_layouts/default.html')
| -rw-r--r-- | docs/_layouts/default.html | 46 |
1 files changed, 41 insertions, 5 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 8015c1587..d7d49e1b6 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -5,13 +5,49 @@ {% include header.html %} <!-- Place anything custom after this. --> </head> - <body class="bs-docs-docs" data-spy="scroll" data-target=".bs-docs-sidebar"> + <body data-spy="scroll" data-target=".bs-sidebar"> - <!-- Docs nav --> - {% include docs-nav.html %} + <!-- Docs master nav --> + {% include nav-main.html %} - <!-- Page content of course! --> - {{ content }} + <!-- Docs page layout --> + <div class="bs-header"> + <div class="container"> + <h1>{{ page.title }}</h1> + <p>{{ page.lead }}</p> + </div> + </div> + + <div class="container bs-docs-container"> + <div class="row"> + <div class="col col-lg-3"> + <div class="bs-sidebar"> + <ul class="nav bs-sidenav"> + {% if page.slug == "getting-started" %} + {% include nav-getting-started.html %} + {% elsif page.slug == "css" %} + {% include nav-css.html %} + {% elsif page.slug == "components" %} + {% include nav-components.html %} + {% elsif page.slug == "js" %} + {% include nav-javascript.html %} + {% elsif page.slug == "customize" %} + {% include nav-customize.html %} + {% endif %} + </ul> + </div> + </div> + <div class="col col-lg-9"> + {{ content }} + </div> + </div> + + <!-- Quick back to top --> + <a href="#" class="bs-top"> + Back to top + </a> + + </div> <!-- Main docs footer (social buttons, copyright, etc). --> {% include colophon.html %} |
