[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / CSS / bootstrap / docs / _includes / getting-started / whats-included.html
1 <div class="bs-docs-section">
2   <h1 id="whats-included" class="page-header">What's included</h1>
3
4   <p class="lead">Bootstrap is downloadable in two forms, within which you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.</p>
5
6   <div class="bs-callout bs-callout-warning" id="jquery-required">
7     <h4>jQuery required</h4>
8     <p>Please note that <strong>all JavaScript plugins require jQuery</strong> to be included, as shown in the <a href="#template">starter template</a>. <a href="{{ site.repo }}/blob/v{{ site.current_version }}/bower.json">Consult our <code>bower.json</code></a> to see which versions of jQuery are supported.</p>
9   </div>
10
11   <h2 id="whats-included-pronapiled">Pronapiled Bootstrap</h2>
12   <p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:</p>
13 <!-- NOTE: This info is intentionally duplicated in the README.
14 Copy any changes made here over to the README too. -->
15 {% highlight bash %}
16 bootstrap/
17 ├── css/
18 │   ├── bootstrap.css
19 │   ├── bootstrap.css.map
20 │   ├── bootstrap.min.css
21 │   ├── bootstrap-theme.css
22 │   ├── bootstrap-theme.css.map
23 │   └── bootstrap-theme.min.css
24 ├── js/
25 │   ├── bootstrap.js
26 │   └── bootstrap.min.js
27 └── fonts/
28     ├── glyphicons-halflings-regular.eot
29     ├── glyphicons-halflings-regular.svg
30     ├── glyphicons-halflings-regular.ttf
31     ├── glyphicons-halflings-regular.woff
32     └── glyphicons-halflings-regular.woff2
33 {% endhighlight %}
34 <!-- NOTE: This info is intentionally duplicated in the README.
35 Copy any changes made here over to the README too. -->
36   <p>This is the most basic form of Bootstrap: pronapiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). CSS <a href="https://developers.google.com/chrome-developer-tools/docs/css-preprocessors">source maps</a> (<code>bootstrap.*.map</code>) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>
37
38   <h2 id="whats-included-source">Bootstrap source code</h2>
39   <p>The Bootstrap source code download includes the pronapiled CSS, JavaScript, and font assets, along with source Less, JavaScript, and documentation. More specifically, it includes the following and more:</p>
40 {% highlight bash %}
41 bootstrap/
42 ├── less/
43 ├── js/
44 ├── fonts/
45 ├── dist/
46 │   ├── css/
47 │   ├── js/
48 │   └── fonts/
49 └── docs/
50     └── examples/
51 {% endhighlight %}
52   <p>The <code>less/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the pronapiled download section above. The <code>docs/</code> folder includes the source code for our documentation, and <code>examples/</code> of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.</p>
53 </div>