├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── gulpfile.js ├── package.json └── src ├── css ├── animate.css ├── bootstrap.min.css └── style.scss ├── index.html └── js ├── lib ├── bootstrap.bundle.min.js ├── fontawesome-all.min.js └── jquery.min.js └── script.js /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | .vscode -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/package.json -------------------------------------------------------------------------------- /src/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/css/animate.css -------------------------------------------------------------------------------- /src/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/css/style.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/lib/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/js/lib/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/js/lib/fontawesome-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/js/lib/fontawesome-all.min.js -------------------------------------------------------------------------------- /src/js/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/js/lib/jquery.min.js -------------------------------------------------------------------------------- /src/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/gulpjs4-2824056/HEAD/src/js/script.js --------------------------------------------------------------------------------