| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | <!DOCTYPE html><html lang="en">  <head>    <!-- Meta, title, CSS, favicons, etc. -->    {% include header.html %}  </head>  <body>    <a class="sr-only" href="#content">Skip to main content</a>    <!-- Docs master nav -->    {% include nav-main.html %}    <!-- Docs page layout -->    <div class="bs-header" id="content">      <div class="container">        <h1>{{ page.title }}</h1>        <p>{{ page.lead }}</p>        {% include ads.html %}      </div>    </div>    <div class="container bs-docs-container">      <div class="row">        <div class="col-md-3">          <div class="bs-sidebar hidden-print" role="complementary">            <ul class="nav bs-sidenav">              {% include nav-validator.html %}            </ul>          </div>        </div>        <div class="col-md-9" role="main">          {{ content }}        </div>      </div>    </div>    <!-- Footer    ================================================== -->    <footer class="bs-footer" role="contentinfo">      <div class="container">        {% include social-buttons.html %}        <p>Built by <a href="http://twitter.com/1000hz" target="_blank">@1000hz</a> with all the love in the world for <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p>        <p>This project is not affiliated with Bootstrap in any official capacity.</p>        <p>This documentation page has been adapted from Bootstrap's official docs.</p>        <p>Code licensed under <a href="http://opensource.org/licenses/MIT" target="_blank">MIT License</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>      </div>    </footer>    <!-- JS and analytics only. -->    {% include footer.html %}  </body></html>
 |