├── .gitignore ├── LICENSE ├── README.md ├── chhota.js ├── css └── style.css ├── favicon.png ├── img └── aperture-vintage-313010.jpg ├── index.html └── js ├── app.js ├── chhota.js └── temp-app.js /.gitignore: -------------------------------------------------------------------------------- 1 | CNAME 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/README.md -------------------------------------------------------------------------------- /chhota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/chhota.js -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/css/style.css -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/favicon.png -------------------------------------------------------------------------------- /img/aperture-vintage-313010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/img/aperture-vintage-313010.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/js/app.js -------------------------------------------------------------------------------- /js/chhota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/js/chhota.js -------------------------------------------------------------------------------- /js/temp-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jajoosam/chhota/HEAD/js/temp-app.js --------------------------------------------------------------------------------