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-docs-sidebar">
2013-02-12 20:16:32 +00:00
<!-- Docs master nav -->
{% include nav-main.html %}
<!-- Docs page layout -->
2013-05-09 05:29:53 +00:00
<div class="bs-docs-header">
<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-docs-sidebar">
<ul class="nav">
{% if page.slug == "welcome" %}
{% include nav-welcome.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 -->
<a href="#welcome" class="bs-docs-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>