├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── npm_publish.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── install.js ├── gulpfile.js ├── package.json └── src ├── assets ├── images │ └── sample.jpg ├── js │ └── app.js └── sass │ ├── _global.sass │ ├── _includes.sass │ ├── app.sass │ ├── base │ └── _base.sass │ ├── helpers │ ├── _helpers.sass │ ├── _mixins.sass │ └── _vars.sass │ ├── modules │ └── _modules.sass │ ├── pages │ └── index.sass │ └── partials │ └── _partials.sass ├── index.html └── pug ├── _includes.pug ├── helpers └── _mixins.pug ├── index.pug └── templates ├── _default.pug └── partials ├── _foot.pug └── _head.pug /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/npm_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/.github/workflows/npm_publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /bin/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/bin/install.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/assets/images/sample.jpg -------------------------------------------------------------------------------- /src/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/assets/js/app.js -------------------------------------------------------------------------------- /src/assets/sass/_global.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/sass/_includes.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/assets/sass/_includes.sass -------------------------------------------------------------------------------- /src/assets/sass/app.sass: -------------------------------------------------------------------------------- 1 | @import '_includes' 2 | -------------------------------------------------------------------------------- /src/assets/sass/base/_base.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/assets/sass/base/_base.sass -------------------------------------------------------------------------------- /src/assets/sass/helpers/_helpers.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/assets/sass/helpers/_helpers.sass -------------------------------------------------------------------------------- /src/assets/sass/helpers/_mixins.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/sass/helpers/_vars.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/sass/modules/_modules.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/sass/pages/index.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/assets/sass/pages/index.sass -------------------------------------------------------------------------------- /src/assets/sass/partials/_partials.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pug/_includes.pug: -------------------------------------------------------------------------------- 1 | include helpers/_mixins 2 | -------------------------------------------------------------------------------- /src/pug/helpers/_mixins.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pug/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/pug/index.pug -------------------------------------------------------------------------------- /src/pug/templates/_default.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/pug/templates/_default.pug -------------------------------------------------------------------------------- /src/pug/templates/partials/_foot.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/pug/templates/partials/_foot.pug -------------------------------------------------------------------------------- /src/pug/templates/partials/_head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr-cologne/gulp-starter-kit/HEAD/src/pug/templates/partials/_head.pug --------------------------------------------------------------------------------