1234567891011121314151617181920212223242526272829303132333435363738 |
- <div class="bs-docs-section">
- <h1 id="template" class="page-header">Basic template</h1>
- <p class="lead">Start with this basic HTML template, or modify <a href="#examples">these examples</a>. We hope you'll customize our templates and examples, adapting them to suit your needs.</p>
- <p>Copy the HTML below to begin working with a minimal Bootstrap document.</p>
- {% highlight html %}
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>Bootstrap 101 Template</title>
-
- <link rel="stylesheet" href="{{ site.cdn.css }}" integrity="{{ site.cdn.css_hash }}" crossorigin="anonymous">
-
-
-
- </head>
- <body>
- <h1>Hello, world!</h1>
-
- <script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
-
- <script src="{{ site.cdn.js }}" integrity="{{ site.cdn.js_hash }}" crossorigin="anonymous"></script>
- </body>
- </html>
- {% endhighlight %}
- </div>
|