Contents

Discover what’s included in autoRoyal.

Precompiled autoRoyal

Once downloaded, unzip the compressed folder and you’ll see something like this:

bootstrap/
├── assets/
│   ├── css/
│   │   ├── theme.css
│   ├── images/
│   │   ├── favicon.png
│   │   ├── cars/
│   │   ├── demos/
│   │   ├── landings/
│   │   ├── ...
│   ├── js/
│   │   ├── theme.js
│   ├── vendor/
│   │   ├── aos/
│   │   │   ├── aos.js
│   │   │   ├── aos.css
│   │   ├── bootstrap/
│   │   │   ├── bootstrap.min.js
│   │   │   ├── bootstrap.min.css
│   │   ├── chosen-select/
│   │   │   ├── css/
│   │   │   │   ├── chosen-sprite.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── chosen.min.css
│   │   │   ├── js/
│   │   │   │   ├── chosen.jquery.min.js
├── docs/
│   ├── index.html
│   ├── contents.html
│   ├── ...
│   ├── assets/
│   │   ├── vendor/
│   │   │   ├── aos/
│   │   │   │   ├── prism.css
│   │   │   │   ├── prism.js
│   ├── components/
│   │   ├── alerts.html
│   │   ├── avatars.html
│   │   ├── badge.html
│   │   ...
│   ├── plugins/
│   │   ├── aos.html
│   │   └── fancybox.html
│   ├── utilities/
│   │   ├── borders.html
│   │   ├── colors.html
│   │   ├── display.html
│   │   ...
├── index.html
├── dealership.html
└── ...

This is the most basic form of autoRoyal: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (theme.css and theme.js), as well as compiled and minified CSS and JS (theme.min.css and theme.min.js).

Top