TODC 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.
Please note that all JavaScript plugins require jQuery to be included, as shown in the starter template. Consult our bower.json
to see which versions of jQuery are supported.
Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:
{% highlight bash %} todc-bootstrap/ ├── css/ │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── todc-bootstrap.css │ ├── todc-bootstrap.css.map │ ├── todc-bootstrap.min.css │ └── todc-bootstrap.min.css.map ├── js/ │ ├── bootstrap.js │ └── bootstrap.min.js ├── fonts/ │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── img/ └── checkmark.png {% endhighlight %}This is the most basic form of TODC Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*, todc-bootstrap.*
), as well as compiled and minified CSS and JS (bootstrap.min.*, todc-bootstrap.min.*
). CSS source maps (bootstrap.*.map, todc-bootstrap.*.map
) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme.
Please note that Bootstrap is not included with the source. We do provide a grunt
task to download the Bootstrap source, grunt checkout-bootstrap
The TODC 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:
{% highlight bash %} todc-bootstrap/ ├── less/ ├── dist/ │ ├── css/ │ ├── js/ │ ├── fonts/ │ └── img/ ├── docs/ │ └── examples/ └── img/ {% endhighlight %}The less/
is the source code for our CSS. 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.