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