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