├── .gitignore ├── README.md ├── andrew-marks ├── css │ └── main.css ├── images │ ├── background.jpg │ ├── pages.png │ └── x.png ├── index.html ├── js │ ├── jquery.js │ └── main.js └── scss │ └── main.scss └── travis-neilson ├── css ├── base.scss ├── main.css └── main.sass ├── img ├── .gitignore ├── bg.jpg └── presentation.png ├── index.html ├── index.jade └── js ├── app.js └── min └── app-min.js /.gitignore: -------------------------------------------------------------------------------- 1 | ### CodeKit ### 2 | # General CodeKit files to ignore 3 | config.codekit 4 | /min 5 | 6 | 7 | ### Sass ### 8 | .sass-cache 9 | *.css.map 10 | 11 | 12 | ### OSX ### 13 | .DS_Store 14 | .AppleDouble 15 | .LSOverride 16 | 17 | # Icon must end with two \r 18 | Icon 19 | 20 | 21 | # Thumbnails 22 | ._* 23 | 24 | # Files that might appear in the root of a volume 25 | .DocumentRevisions-V100 26 | .fseventsd 27 | .Spotlight-V100 28 | .TemporaryItems 29 | .Trashes 30 | .VolumeIcon.icns 31 | 32 | # Directories potentially created on remote AFP share 33 | .AppleDB 34 | .AppleDesktop 35 | Network Trash Folder 36 | Temporary Items 37 | .apdisk 38 | 39 | 40 | ### Windows ### 41 | # Windows image file caches 42 | Thumbs.db 43 | ehthumbs.db 44 | 45 | # Folder config file 46 | Desktop.ini 47 | 48 | # Recycle Bin used on file shares 49 | $RECYCLE.BIN/ 50 | 51 | # Windows Installer files 52 | *.cab 53 | *.msi 54 | *.msm 55 | *.msp 56 | 57 | # Windows shortcuts 58 | *.lnk 59 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Splash Page and Modal With Andrew and Travis 2 | 3 | This is the code repo that accompanies the free YouTube videos. Check them out! 4 | 5 |