Table of contents

Contents

Discover what's included in Metro 4, including our precompiled and source code flavors. Remember, Metro's JavaScript plugins require jQuery.

Precompiled Metro

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


                    metro/
                    ├── css/
                    │   ├── metro.css
                    │   ├── metro.min.css
                    │   ├── metro-colors.css
                    │   ├── metro-colors.min.css
                    │   ├── metro-rtl.css
                    │   ├── metro-rtl.min.css
                    │   ├── metro-schemes.css
                    │   ├── metro-schemes.min.css
                    │   ├── metro-icons.css
                    │   ├── metro-icons.min.css
                    │   ├── metro-all.css
                    │   ├── metro-all.min.css
                    │   ├── schemes/
                    │   └── maps/
                    └── js/
                    │   ├── metro.js
                    │   ├── metro.min.js
                    │   └── metro.min.js.map
                    └── mif/
                        ├── metro.eot
                        ├── metro.svg
                        ├── metro.ttf
                        ├── metro.woff
                        └── metro.json
                

This is the most basic form of Metro: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (metro*.*), as well as compiled and minified CSS and JS (metro*.min.*). CSS source maps (metro*.map) are available for use with certain browsers’ developer tools.

Precompiled short

                    metro/
                    ├── css/
                    │   └── metro-all.min.css
                    └── js/
                    │   ├── metro.min.js
                    └── mif/
                        └── metro.woff
                

This is the most for production usage.

Source code

The Metro 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:


                    metro/
                    ├── build/
                    │   ├── mif/
                    │   ├── css/
                    │   └── js/
                    ├── docs/
                    │   └── examples/
                    ├── icons/
                    ├── js/
                    └── less/
                

The icons/ are the source code for Metro Icon Font. The less/ and js/ are the source code for our CSS and JavaScript. The build/ folder includes everything listed in the precompiled download section above. The docs/ folder includes the source code for our documentation, and examples/ of Metro usage. Beyond that, any other included file provides support for packages, license information, and development.