├── README.md ├── assets ├── css │ └── screen.css ├── fonts │ ├── casper-icons.eot │ ├── casper-icons.svg │ ├── casper-icons.ttf │ └── casper-icons.woff ├── images │ ├── IMG_0022.JPG │ └── IMG_0111.JPG └── js │ ├── index.js │ └── jquery.fitvids.js ├── favicon.ico ├── index.html ├── index2.html └── post-1 └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/css/screen.css -------------------------------------------------------------------------------- /assets/fonts/casper-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/fonts/casper-icons.eot -------------------------------------------------------------------------------- /assets/fonts/casper-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/fonts/casper-icons.svg -------------------------------------------------------------------------------- /assets/fonts/casper-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/fonts/casper-icons.ttf -------------------------------------------------------------------------------- /assets/fonts/casper-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/fonts/casper-icons.woff -------------------------------------------------------------------------------- /assets/images/IMG_0022.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/images/IMG_0022.JPG -------------------------------------------------------------------------------- /assets/images/IMG_0111.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/images/IMG_0111.JPG -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /assets/js/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/assets/js/jquery.fitvids.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/index.html -------------------------------------------------------------------------------- /index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/index2.html -------------------------------------------------------------------------------- /post-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzigit/HEAD/post-1/index.html --------------------------------------------------------------------------------