Contents
Discover what’s included in Arizona Bootstrap, including our precompiled and source code flavors. Remember, Arizona Bootstrap’s JavaScript plugins require jQuery.
Precompiled Arizona Bootstrap
Once downloaded, unzip the compressed folder and you’ll see something like this:
arizona-bootstrap/
├── css/
│ ├── arizona-bootstrap.css
│ ├── arizona-bootstrap.css.map
│ ├── arizona-bootstrap.min.css
│ └── arizona-bootstrap.min.css.map
└── js/
├── arizona-bootstrap.bundle.js
├── arizona-bootstrap.bundle.js.map
├── arizona-bootstrap.bundle.min.js
├── arizona-bootstrap.bundle.min.js.map
├── arizona-bootstrap.js
├── arizona-bootstrap.js.map
├── arizona-bootstrap.min.js
└── arizona-bootstrap.min.js.map
This is the most basic form of Arizona Bootstrap
: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (arizona-bootstrap.*
), as well as compiled and minified CSS and JS (arizona-bootstrap.min.*
). source maps (arizona-bootstrap.*.map
) are available for use with certain browsers’ developer tools. Bundled JS files (arizona-bootstrap.bundle.js
and minified arizona-bootstrap.bundle.min.js
) include Popper, but not jQuery.
CSS Files
Arizona Bootstrap includes a handful of options for including some or all of our compiled CSS.
CSS files | Layout | Content | Components | Utilities |
---|---|---|---|---|
arizona-bootstrap.css arizona-bootstrap.min.css |
Included | Included | Included | Included |
JS Files
Similarly, we have options for including some or all of our compiled JavaScript.
JS files | Popper | jQuery |
---|---|---|
arizona-bootstrap.bundle.js arizona-bootstrap.bundle.min.js |
Included | Not included |
arizona-bootstrap.js arizona-bootstrap.min.js |
Not included | Not included |
Arizona Bootstrap
Source Code
The Arizona 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:
arizona-bootstrap/
├── dist/
│ ├── css/
│ └── js/
├── site/
│ └──content/
| └──docs/
| └── 2.0/
| └── examples/
├── js/
└── scss/
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 site/docs/
folder includes the source code for our documentation, and examples/
of Arizona Bootstrap
usage. Beyond that, any other included file provides support for packages, license information, and development.