2018-09-20 17:10:31 +08:00
|
|
|
<!doctype html>
|
2013-02-13 04:16:32 +08:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2013-02-14 15:37:08 +08:00
|
|
|
{% include header.html %}
|
2013-02-13 04:16:32 +08:00
|
|
|
</head>
|
2013-07-27 10:25:45 +08:00
|
|
|
<body>
|
2017-07-03 06:38:07 +08:00
|
|
|
{% include skippy.html %}
|
|
|
|
{% include v4.html %}
|
2013-02-13 04:16:32 +08:00
|
|
|
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/main.html %}
|
2013-03-28 18:06:00 +08:00
|
|
|
|
2015-01-31 19:19:19 +08:00
|
|
|
<div class="bs-docs-header" id="content" tabindex="-1">
|
2013-05-09 13:29:53 +08:00
|
|
|
<div class="container">
|
2013-05-09 12:56:08 +08:00
|
|
|
<h1>{{ page.title }}</h1>
|
2013-05-09 13:29:53 +08:00
|
|
|
<p>{{ page.lead }}</p>
|
2013-07-27 15:35:26 +08:00
|
|
|
{% include ads.html %}
|
2013-05-09 12:56:08 +08:00
|
|
|
</div>
|
2013-05-09 13:29:53 +08:00
|
|
|
</div>
|
2013-02-13 04:16:32 +08:00
|
|
|
|
2013-05-09 13:29:53 +08:00
|
|
|
<div class="container bs-docs-container">
|
2013-12-21 13:02:25 +08:00
|
|
|
|
2013-05-09 12:56:08 +08:00
|
|
|
<div class="row">
|
2014-11-04 03:17:03 +08:00
|
|
|
<div class="col-md-{% if page.fullwidth == true %}12{% else %}9{% endif %}" role="main">
|
2013-12-12 14:37:59 +08:00
|
|
|
{{ content }}
|
|
|
|
</div>
|
2014-11-04 03:17:03 +08:00
|
|
|
{% unless page.fullwidth == true %}
|
2014-12-07 22:43:50 +08:00
|
|
|
<div class="col-md-3" role="complementary">
|
|
|
|
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm">
|
2017-07-05 04:24:51 +08:00
|
|
|
<form class="bs-docs-search">
|
|
|
|
<input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off">
|
|
|
|
</form>
|
|
|
|
|
2014-02-09 15:24:16 +08:00
|
|
|
<ul class="nav bs-docs-sidenav">
|
2013-05-10 02:40:39 +08:00
|
|
|
{% if page.slug == "getting-started" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/getting-started.html %}
|
2013-05-09 12:56:08 +08:00
|
|
|
{% elsif page.slug == "css" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/css.html %}
|
2013-05-09 12:56:08 +08:00
|
|
|
{% elsif page.slug == "components" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/components.html %}
|
2013-05-09 12:56:08 +08:00
|
|
|
{% elsif page.slug == "js" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/javascript.html %}
|
2013-05-23 08:30:58 +08:00
|
|
|
{% elsif page.slug == "customize" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/customize.html %}
|
2013-09-12 03:30:46 +08:00
|
|
|
{% elsif page.slug == "about" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/about.html %}
|
2014-01-19 06:09:09 +08:00
|
|
|
{% elsif page.slug == "migration" %}
|
2014-03-17 10:32:08 +08:00
|
|
|
{% include nav/migration.html %}
|
2013-05-09 12:56:08 +08:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
2014-02-06 05:46:24 +08:00
|
|
|
<a class="back-to-top" href="#top">
|
|
|
|
Back to top
|
|
|
|
</a>
|
2014-05-23 09:38:43 +08:00
|
|
|
{% if page.slug == "css" or page.slug == "components" or page.slug == "js" %}
|
2014-10-21 11:16:09 +08:00
|
|
|
<a href="#" class="bs-docs-theme-toggle" role="button">
|
2014-05-23 09:38:43 +08:00
|
|
|
Preview theme
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2014-12-07 22:43:50 +08:00
|
|
|
</nav>
|
2013-05-09 12:56:08 +08:00
|
|
|
</div>
|
2014-11-04 03:17:03 +08:00
|
|
|
{% endunless %}
|
2013-05-09 12:56:08 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-02-13 04:16:32 +08:00
|
|
|
|
2013-02-14 15:37:08 +08:00
|
|
|
{% include footer.html %}
|
2013-02-13 04:16:32 +08:00
|
|
|
</body>
|
2013-02-26 16:37:59 +08:00
|
|
|
</html>
|