diff --git a/docs/_includes/getting-started/download.html b/docs/_includes/getting-started/download.html index bb0537796f..5e9bfd8388 100644 --- a/docs/_includes/getting-started/download.html +++ b/docs/_includes/getting-started/download.html @@ -6,14 +6,14 @@

Bootstrap

-

Compiled and minified CSS, JavaScript, and fonts. No docs or original source files are included.

+

Compiled and minified CSS and JavaScript. No docs or original source files are included.

Download Bootstrap

Source code

-

Source Less, JavaScript, and font files, along with our docs. Requires a Less compiler and some setup.

+

Source Less, JavaScript, and documentation. Requires a Less compiler and some setup.

Download source

@@ -41,6 +41,6 @@ {% endhighlight %}

Install with Bower

-

Install and manage Bootstrap's Less, CSS, JavaScript, and fonts using Bower.

+

Install and manage Bootstrap's Less, CSS, and JavaScript using Bower.

{% highlight bash %}$ bower install bootstrap{% endhighlight %}
diff --git a/docs/_includes/getting-started/whats-included.html b/docs/_includes/getting-started/whats-included.html index 8500e573c4..cf1fec0c32 100644 --- a/docs/_includes/getting-started/whats-included.html +++ b/docs/_includes/getting-started/whats-included.html @@ -19,31 +19,24 @@ bootstrap/ │ ├── bootstrap.min.css │ ├── bootstrap-theme.css │ └── bootstrap-theme.min.css -├── js/ -│ ├── bootstrap.js -│ └── bootstrap.min.js -└── fonts/ - ├── glyphicons-halflings-regular.eot - ├── glyphicons-halflings-regular.svg - ├── glyphicons-halflings-regular.ttf - └── glyphicons-halflings-regular.woff +└── js/ + ├── bootstrap.js + └── bootstrap.min.js {% endhighlight %} -

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.*). Fonts from Glyphicons are included, as is the optional Bootstrap theme.

+

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.*). Also included is the optional Bootstrap theme.

Bootstrap source code

-

The Bootstrap source code download includes the precompiled CSS, JavaScript, and font assets, along with source Less, JavaScript, and documentation. More specifically, it includes the following and more:

+

The Bootstrap source code download includes the precompiled CSS and JavaScript assets, along with source Less, JavaScript, and documentation. More specifically, it includes the following and more:

{% highlight bash %} bootstrap/ ├── less/ ├── js/ -├── fonts/ ├── dist/ │ ├── css/ -│ ├── js/ -│ └── fonts/ +│ └── js/ └── docs/ └── examples/ {% endhighlight %} -

The less/, js/, and fonts/ are the source code for our CSS, JS, and icon fonts (respectively). 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.

+

The less/ 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.