├── .gitignore ├── README.md ├── gulpfile.js ├── index.html ├── js └── app.js ├── package.json └── scss ├── _settings.scss └── app.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | css 5 | yarn.lock 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/foundation-sites-template/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/foundation-sites-template/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/foundation-sites-template/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation(); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/foundation-sites-template/HEAD/package.json -------------------------------------------------------------------------------- /scss/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/foundation-sites-template/HEAD/scss/_settings.scss -------------------------------------------------------------------------------- /scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/foundation-sites-template/HEAD/scss/app.scss --------------------------------------------------------------------------------