aboutsummaryrefslogtreecommitdiff
path: root/docs/_layouts/default.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-31 13:53:33 -0800
committerMark Otto <[email protected]>2013-12-31 13:53:33 -0800
commitb253cb2c1e34a41940c4933fb95c46da833fc5f9 (patch)
treee5a40b963eba273c42e4aad21fb3858a657002dd /docs/_layouts/default.html
parent9e1153d0498a9e9612c1db85922642fe2aa38c2a (diff)
parent8812856de1ce17bb2f482c75370fb2e3db7ac6de (diff)
downloadbootstrap-b253cb2c1e34a41940c4933fb95c46da833fc5f9.tar.xz
bootstrap-b253cb2c1e34a41940c4933fb95c46da833fc5f9.zip
Merge branch 'master' into docs_derp
Conflicts: _config.yml docs/_includes/footer.html docs/_includes/nav-main.html docs/_includes/old-bs-docs.html docs/_layouts/default.html docs/_layouts/home.html docs/getting-started.html docs/index.html
Diffstat (limited to 'docs/_layouts/default.html')
-rw-r--r--docs/_layouts/default.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
new file mode 100644
index 000000000..5a8ae8575
--- /dev/null
+++ b/docs/_layouts/default.html
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <!-- Meta, title, CSS, favicons, etc. -->
+ {% include header.html %}
+ </head>
+ <body>
+ <a class="sr-only" href="#content">Skip to main content</a>
+
+ <!-- Docs master nav -->
+ {% include nav-main.html %}
+
+ <!-- Docs page layout -->
+ <div class="bs-header" id="content">
+ <div class="container">
+ <h1>{{ page.title }}</h1>
+ <p>{{ page.lead }}</p>
+ {% include ads.html %}
+ </div>
+ </div>
+
+ <div class="container bs-docs-container">
+
+ <div class="row">
+ <div class="col-md-9" role="main">
+ {{ content }}
+ </div>
+ <div class="col-md-3">
+ <div class="bs-sidebar hidden-print" role="complementary">
+ <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 %}
+ {% elsif page.slug == "about" %}
+ {% include nav-about.html %}
+ {% endif %}
+ </ul>
+ </div>
+ </div>
+ </div>
+
+ </div>
+
+ <!-- JS and analytics only. -->
+ {% include footer.html %}
+ </body>
+</html>