Download
Download Arizona Bootstrap to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, RubyGems, and more.
Source Files
Compile Arizona Bootstrap with your own asset pipeline by downloading our source Sass, JavaScript, and documentation files. This option requires some additional tooling:
- Sass compiler (Libsass or Ruby Sass is supported) for compiling your CSS.
- Autoprefixer for CSS vendor prefixing
Should you require build tools, they are included for developing Arizona Bootstrap and its docs, but they’re likely unsuitable for your own purposes.
Arizona Digital CDN
Skip the download with the UA Digital CDN to deliver cached version of Arizona Bootstrap ’s compiled CSS and JS to your project.
<link rel="stylesheet" href="https://cdn.digital.arizona.edu/lib/arizona-bootstrap/2.0.27/css/arizona-bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.digital.arizona.edu/lib/arizona-bootstrap/2.0.27/js/arizona-bootstrap.min.js" crossorigin="anonymous"></script>
If you’re using our compiled JavaScript, don’t forget to include CDN versions of jQuery and Popper before it.
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.0/dist/jquery.slim.min.js" integrity="sha384-w5y/xIeYixWvfM+A1cEbmHPURnvyqmVg5eVENruEdDjcyRLUSNej7512JQGspFUr" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
Package Managers
Pull in Arizona Bootstrap ’s source files into nearly any project with some of the most popular package managers. No matter the package manager, Arizona Bootstrap will require a Sass compiler and Autoprefixer for a setup that matches our official compiled versions.
npm
Install Arizona Bootstrap in your Node.js powered apps with npm:
npm install https://github.com/az-digital/arizona-bootstrap
require('arizona-bootstrap')
will load all of Arizona Bootstrap
’s jQuery plugins onto the jQuery object. The arizona-bootstrap
module itself does not export anything. You can manually load Arizona Bootstrap
’s jQuery plugins individually by loading the /js/*.js
files under the package’s top-level directory.
Arizona Bootstrap
’s package.json
contains some additional metadata under the following keys:
sass
- path to Arizona Bootstrap ’s main Sass source filestyle
- path to Arizona Bootstrap ’s non-minified CSS that’s been precompiled using the default settings (no customization)
yarn
Install Arizona Bootstrap in your Node.js powered apps with the yarn package:
yarn add https://github.com/az-digital/arizona-bootstrap