2013-07-27 00:18:12 -07:00
|
|
|
<!DOCTYPE html>
|
2013-02-12 12:16:32 -08:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2013-02-13 23:37:08 -08:00
|
|
|
<!-- Meta, title, CSS, favicons, etc. -->
|
|
|
|
{% include header.html %}
|
2013-02-12 12:16:32 -08:00
|
|
|
</head>
|
2013-07-26 19:25:45 -07:00
|
|
|
<body>
|
2014-12-14 14:31:02 +00:00
|
|
|
<a id="skippy" class="sr-only sr-only-focusable" href="#content"><div class="container"><span class="skiplink-text">Skip to main content</span></div></a>
|
2015-12-06 01:44:31 -08:00
|
|
|
<a href="http://blog.getbootstrap.com/2015/08/19/bootstrap-4-alpha/" class="v4-tease">Aww yeah, Bootstrap 4 is coming!</a>
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-05-08 21:56:08 -07:00
|
|
|
<!-- Docs master nav -->
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/main.html %}
|
2013-03-28 03:06:00 -07:00
|
|
|
|
2013-05-08 21:56:08 -07:00
|
|
|
<!-- Docs page layout -->
|
2015-01-31 11:19:19 +00:00
|
|
|
<div class="bs-docs-header" id="content" tabindex="-1">
|
2013-05-08 22:29:53 -07:00
|
|
|
<div class="container">
|
2013-05-08 21:56:08 -07:00
|
|
|
<h1>{{ page.title }}</h1>
|
2013-05-08 22:29:53 -07:00
|
|
|
<p>{{ page.lead }}</p>
|
2013-07-27 00:35:26 -07:00
|
|
|
{% include ads.html %}
|
2013-05-08 21:56:08 -07:00
|
|
|
</div>
|
2013-05-08 22:29:53 -07:00
|
|
|
</div>
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-05-08 22:29:53 -07:00
|
|
|
<div class="container bs-docs-container">
|
2013-12-20 21:02:25 -08:00
|
|
|
|
2013-05-08 21:56:08 -07:00
|
|
|
<div class="row">
|
2014-11-03 20:17:03 +01:00
|
|
|
<div class="col-md-{% if page.fullwidth == true %}12{% else %}9{% endif %}" role="main">
|
2013-12-11 22:37:59 -08:00
|
|
|
{{ content }}
|
|
|
|
</div>
|
2014-11-03 20:17:03 +01:00
|
|
|
{% unless page.fullwidth == true %}
|
2014-12-07 14:43:50 +00:00
|
|
|
<div class="col-md-3" role="complementary">
|
|
|
|
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm">
|
2014-02-08 23:24:16 -08:00
|
|
|
<ul class="nav bs-docs-sidenav">
|
2013-05-09 11:40:39 -07:00
|
|
|
{% if page.slug == "getting-started" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/getting-started.html %}
|
2013-05-08 21:56:08 -07:00
|
|
|
{% elsif page.slug == "css" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/css.html %}
|
2013-05-08 21:56:08 -07:00
|
|
|
{% elsif page.slug == "components" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/components.html %}
|
2013-05-08 21:56:08 -07:00
|
|
|
{% elsif page.slug == "js" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/javascript.html %}
|
2013-05-23 02:30:58 +02:00
|
|
|
{% elsif page.slug == "customize" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/customize.html %}
|
2013-09-11 12:30:46 -07:00
|
|
|
{% elsif page.slug == "about" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/about.html %}
|
2014-01-18 14:09:09 -08:00
|
|
|
{% elsif page.slug == "migration" %}
|
2014-03-16 19:32:08 -07:00
|
|
|
{% include nav/migration.html %}
|
2013-05-08 21:56:08 -07:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
2014-02-05 13:46:24 -08:00
|
|
|
<a class="back-to-top" href="#top">
|
|
|
|
Back to top
|
|
|
|
</a>
|
2014-05-22 18:38:43 -07:00
|
|
|
{% if page.slug == "css" or page.slug == "components" or page.slug == "js" %}
|
2014-10-20 20:16:09 -07:00
|
|
|
<a href="#" class="bs-docs-theme-toggle" role="button">
|
2014-05-22 18:38:43 -07:00
|
|
|
Preview theme
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2014-12-07 14:43:50 +00:00
|
|
|
</nav>
|
2013-05-08 21:56:08 -07:00
|
|
|
</div>
|
2014-11-03 20:17:03 +01:00
|
|
|
{% endunless %}
|
2013-05-08 21:56:08 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-02-12 12:16:32 -08:00
|
|
|
|
2013-02-13 23:37:08 -08:00
|
|
|
{% include footer.html %}
|
2013-02-12 12:16:32 -08:00
|
|
|
</body>
|
2013-02-26 00:37:59 -08:00
|
|
|
</html>
|