contents.md 1.88 KB
Newer Older
1
---
Mark Otto's avatar
Mark Otto committed
2
layout: docs
3
title: Contents
4
description: Discover what's included in Bootstrap, including our precompiled and source code flavors. Remember, Bootstrap's JavaScript plugins require jQuery.
5
group: getting-started
6
toc: true
7
8
---

Mark Otto's avatar
Mark Otto committed
9
## Precompiled Bootstrap
10

Mark Otto's avatar
Mark Otto committed
11
Once downloaded, unzip the compressed folder and you'll see something like this:
12
13
14

<!-- NOTE: This info is intentionally duplicated in the README. Copy any changes made here over to the README too. -->

15
{% highlight plaintext %}
16
17
18
bootstrap/
├── css/
│   ├── bootstrap.css
Mark Otto's avatar
Mark Otto committed
19
│   ├── bootstrap.css.map
20
│   ├── bootstrap.min.css
Mark Otto's avatar
Mark Otto committed
21
│   └── bootstrap.min.css.map
22
23
24
25
26
└── js/
    ├── bootstrap.js
    └── bootstrap.min.js
{% endhighlight %}

27
This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools.
28

Mark Otto's avatar
Mark Otto committed
29
## Bootstrap source code
30

Mark Otto's avatar
Mark Otto committed
31
The Bootstrap source code download includes the precompiled CSS and JavaScript assets, along with source Sass, JavaScript, and documentation. More specifically, it includes the following and more:
32

33
{% highlight plaintext %}
34
35
36
37
bootstrap/
├── dist/
│   ├── css/
│   └── js/
Mark Otto's avatar
Mark Otto committed
38
39
40
├── docs/
│   └── examples/
├── js/
Mark Otto's avatar
Mark Otto committed
41
└── scss/
42
43
{% endhighlight %}

Mark Otto's avatar
Mark Otto committed
44
The `scss/` and `js/` are the source code for our CSS and JavaScript. The `dist/` folder includes everything listed in the precompiled download section above. The `docs/` folder includes the source code for our documentation, and `examples/` of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.