Policy 1707 commit to LF
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / CSS / bootstrap / docs / _includes / components / jumbotron.html
1 <div class="bs-docs-section">
2   <h1 id="jumbotron" class="page-header">Jumbotron</h1>
3
4   <p>A lightweight, flexible component that can optionally extend the entire viewport to showcase key content on your site.</p>
5   <div class="bs-example" data-example-id="simple-jumbotron">
6     <div class="jumbotron">
7       <h1>Hello, world!</h1>
8       <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
9       <p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
10     </div>
11   </div>
12 {% highlight html %}
13 <div class="jumbotron">
14   <h1>Hello, world!</h1>
15   <p>...</p>
16   <p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
17 </div>
18 {% endhighlight %}
19   <p>To make the jumbotron full width, and without rounded corners, place it outside all <code>.container</code>s and instead add a <code>.container</code> within.</p>
20 {% highlight html %}
21 <div class="jumbotron">
22   <div class="container">
23     ...
24   </div>
25 </div>
26 {% endhighlight %}
27 </div>