2013-07-27 00:18:12 -07:00
<!DOCTYPE html>
2013-02-12 12:16:32 -08:00
< html lang = "en" >
< head >
2013-02-13 23:37:08 -08:00
<!-- Meta, title, CSS, favicons, etc. -->
{% include header.html %}
<!-- Place anything custom after this. -->
2013-02-12 12:16:32 -08:00
< / head >
2013-07-26 19:25:45 -07:00
< body >
2013-02-12 12:16:32 -08:00
2013-05-08 21:56:08 -07:00
<!-- Docs master nav -->
{% include nav-main.html %}
2013-03-28 03:06:00 -07:00
2013-05-08 21:56:08 -07:00
<!-- Docs page layout -->
2013-05-08 22:51:44 -07:00
< div class = "bs-header" >
2013-05-08 22:29:53 -07:00
< div class = "container" >
2013-05-08 21:56:08 -07:00
< h1 > {{ page.title }}< / h1 >
2013-05-08 22:29:53 -07:00
< p > {{ page.lead }}< / p >
2013-07-27 00:35:26 -07:00
{% include ads.html %}
2013-05-08 21:56:08 -07:00
< / div >
2013-05-08 22:29:53 -07:00
< / div >
2013-02-12 12:16:32 -08:00
2013-07-26 01:43:43 -07:00
<!-- Callout for the old docs link -->
{% include old-bs-docs.html %}
2013-05-08 22:29:53 -07:00
< div class = "container bs-docs-container" >
2013-05-08 21:56:08 -07:00
< div class = "row" >
2013-06-03 21:57:51 -07:00
< div class = "col-lg-3" >
2013-05-08 22:42:42 -07:00
< div class = "bs-sidebar" >
< ul class = "nav bs-sidenav" >
2013-05-09 11:40:39 -07:00
{% if page.slug == "getting-started" %}
2013-07-25 23:29:43 -07:00
{% include nav-getting-started.html %}
2013-05-08 21:56:08 -07:00
{% elsif page.slug == "css" %}
2013-07-25 23:29:43 -07:00
{% include nav-css.html %}
2013-05-08 21:56:08 -07:00
{% elsif page.slug == "components" %}
2013-07-25 23:29:43 -07:00
{% include nav-components.html %}
2013-05-08 21:56:08 -07:00
{% elsif page.slug == "js" %}
2013-07-25 23:29:43 -07:00
{% include nav-javascript.html %}
2013-05-23 02:30:58 +02:00
{% elsif page.slug == "customize" %}
2013-07-25 23:29:43 -07:00
{% include nav-customize.html %}
2013-05-08 21:56:08 -07:00
{% endif %}
< / ul >
< / div >
< / div >
2013-06-03 21:57:51 -07:00
< div class = "col-lg-9" >
2013-05-08 21:56:08 -07:00
{{ content }}
< / div >
< / div >
< / div >
2013-02-12 12:16:32 -08:00
2013-07-17 21:02:50 -07:00
<!-- Footer
================================================== -->
< footer class = "bs-footer" >
{% include social-buttons.html %}
< 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 >
< 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 >
< ul class = "footer-links" >
2013-07-26 19:24:59 -07:00
< li > < a href = "{{ site.blog }}" > Blog< / a > < / li >
2013-07-17 21:02:50 -07:00
< li class = "muted" > · < / li >
2013-07-26 19:05:43 -07:00
< li > < a href = "{{ site.repo }}/issues?state=open" > Issues< / a > < / li >
2013-07-17 21:02:50 -07:00
< li class = "muted" > · < / li >
2013-07-26 19:05:43 -07:00
< li > < a href = "{{ site.repo }}/releases" > Releases< / a > < / li >
2013-07-17 21:02:50 -07:00
< / ul >
< / footer >
2013-05-09 17:36:02 -07:00
2013-02-13 23:37:08 -08:00
<!-- JS and analytics only. -->
{% include footer.html %}
2013-02-12 12:16:32 -08:00
< / body >
2013-02-26 00:37:59 -08:00
< / html >