You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 line
1.4 KiB

  1. <div class="bs-docs-section">
  2. <h1 id="template" class="page-header">Basic template</h1>
  3. <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>
  4. <p>Copy the HTML below to begin working with a minimal Bootstrap document.</p>
  5. {% highlight html %}
  6. <!DOCTYPE html>
  7. <html lang="en">
  8. <head>
  9. <meta charset="utf-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <title>Bootstrap 101 Template</title>
  13. <!-- Bootstrap -->
  14. <link href="css/bootstrap.min.css" rel="stylesheet">
  15. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  16. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  17. <!--[if lt IE 9]>
  18. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  19. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  20. <![endif]-->
  21. </head>
  22. <body>
  23. <h1>Hello, world!</h1>
  24. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  25. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  26. <!-- Include all compiled plugins (below), or include individual files as needed -->
  27. <script src="js/bootstrap.min.js"></script>
  28. </body>
  29. </html>
  30. {% endhighlight %}
  31. </div>