update bootstrap to 3.0.0-rc2
[bootswatch] / bower_components / bootstrap / _layouts / default.html
1 <!DOCTYPE html>
2 <html lang="en">
3   <head>
4     <!-- Meta, title, CSS, favicons, etc. -->
5     {% include header.html %}
6     <!-- Place anything custom after this. -->
7   </head>
8   <body>
9     <a class="sr-only" href="#content">Skip navigation</a>
10
11     <!-- Docs master nav -->
12     {% include nav-main.html %}
13
14     <!-- Docs page layout -->
15     <div class="bs-header" id="content">
16       <div class="container">
17         <h1>{{ page.title }}</h1>
18         <p>{{ page.lead }}</p>
19         {% include ads.html %}
20       </div>
21     </div>
22
23     <!-- Callout for the old docs link -->
24     {% include old-bs-docs.html %}
25
26     <div class="container bs-docs-container">
27       <div class="row">
28         <div class="col-md-3">
29           <div class="bs-sidebar hidden-print" role="complementary">
30             <ul class="nav bs-sidenav">
31               {% if page.slug == "getting-started" %}
32                 {% include nav-getting-started.html %}
33               {% elsif page.slug == "css" %}
34                 {% include nav-css.html %}
35               {% elsif page.slug == "components" %}
36                 {% include nav-components.html %}
37               {% elsif page.slug == "js" %}
38                 {% include nav-javascript.html %}
39               {% elsif page.slug == "customize" %}
40                 {% include nav-customize.html %}
41               {% endif %}
42             </ul>
43           </div>
44         </div>
45         <div class="col-md-9" role="main">
46           {{ content }}
47         </div>
48       </div>
49
50     </div>
51
52     <!-- Footer
53     ================================================== -->
54     <footer class="bs-footer" role="contentinfo">
55       {% include social-buttons.html %}
56
57       <p>Designed and built with all the love in the world by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p>
58       <p>Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
59       <ul class="footer-links">
60         <li><a href="{{ site.blog }}">Blog</a></li>
61         <li class="muted">&middot;</li>
62         <li><a href="{{ site.repo }}/issues?state=open">Issues</a></li>
63         <li class="muted">&middot;</li>
64         <li><a href="{{ site.repo }}/releases">Releases</a></li>
65       </ul>
66     </footer>
67
68     <!-- JS and analytics only. -->
69     {% include footer.html %}
70
71   </body>
72 </html>