unignore bower_components
[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
10     <!-- Docs master nav -->
11     {% include nav-main.html %}
12
13     <!-- Docs page layout -->
14     <div class="bs-header">
15       <div class="container">
16         <h1>{{ page.title }}</h1>
17         <p>{{ page.lead }}</p>
18         {% include ads.html %}
19       </div>
20     </div>
21
22     <!-- Callout for the old docs link -->
23     {% include old-bs-docs.html %}
24
25     <div class="container bs-docs-container">
26       <div class="row">
27         <div class="col-lg-3">
28           <div class="bs-sidebar">
29             <ul class="nav bs-sidenav">
30               {% if page.slug == "getting-started" %}
31                 {% include nav-getting-started.html %}
32               {% elsif page.slug == "css" %}
33                 {% include nav-css.html %}
34               {% elsif page.slug == "components" %}
35                 {% include nav-components.html %}
36               {% elsif page.slug == "js" %}
37                 {% include nav-javascript.html %}
38               {% elsif page.slug == "customize" %}
39                 {% include nav-customize.html %}
40               {% endif %}
41             </ul>
42           </div>
43         </div>
44         <div class="col-lg-9">
45           {{ content }}
46         </div>
47       </div>
48
49     </div>
50
51     <!-- Quick back to top -->
52     <a href="#" class="bs-top">Back to top</a>
53
54     <!-- Footer
55     ================================================== -->
56     <footer class="bs-footer">
57       {% include social-buttons.html %}
58
59       <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>
60       <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>
61       <ul class="footer-links">
62         <li><a href="{{ site.blog }}">Blog</a></li>
63         <li class="muted">&middot;</li>
64         <li><a href="{{ site.repo }}/issues?state=open">Issues</a></li>
65         <li class="muted">&middot;</li>
66         <li><a href="{{ site.repo }}/releases">Releases</a></li>
67       </ul>
68     </footer>
69
70     <!-- JS and analytics only. -->
71     {% include footer.html %}
72
73   </body>
74 </html>