aboutsummaryrefslogtreecommitdiff
path: root/docs/_layouts/default.html
diff options
context:
space:
mode:
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>