twbs--bootstrap/docs/_layouts/default.html

57 lines
1.5 KiB
HTML
Raw Normal View History

2013-02-12 20:16:32 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
{% include header.html %}
<!-- Place anything custom after this. -->
2013-02-12 20:16:32 +00:00
</head>
<body data-spy="scroll" data-target=".bs-sidebar">
2013-02-12 20:16:32 +00:00
<!-- Docs master nav -->
{% include nav-main.html %}
<!-- Docs page layout -->
2013-05-09 05:51:44 +00:00
<div class="bs-header">
2013-05-09 05:29:53 +00:00
<div class="container">
<h1>{{ page.title }}</h1>
2013-05-09 05:29:53 +00:00
<p>{{ page.lead }}</p>
</div>
2013-05-09 05:29:53 +00:00
</div>
2013-02-12 20:16:32 +00:00
2013-05-09 05:29:53 +00:00
<div class="container bs-docs-container">
<div class="row">
<div class="col col-lg-3">
<div class="bs-sidebar">
<ul class="nav bs-sidenav">
2013-05-09 18:40:39 +00:00
{% 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 %}
{% endif %}
</ul>
</div>
</div>
<div class="col col-lg-9">
{{ content }}
</div>
</div>
<!-- Quick back to top -->
2013-05-09 05:52:48 +00:00
<a href="#welcome" class="bs-top">
Back to top
</a>
<!-- Main docs footer (social buttons, copyright, etc). -->
{% include colophon.html %}
</div>
2013-02-12 20:16:32 +00:00
<!-- JS and analytics only. -->
{% include footer.html %}
2013-02-12 20:16:32 +00:00
</body>
</html>