├── .gitignore ├── LICENSE ├── README.md ├── config.default.json ├── config.json ├── gulpfile.js ├── package.json └── src ├── css └── main.css ├── html └── test-template.html └── scss ├── _mixins.scss └── main.scss /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | output/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/README.md -------------------------------------------------------------------------------- /config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/config.default.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/config.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/package.json -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/src/css/main.css -------------------------------------------------------------------------------- /src/html/test-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/src/html/test-template.html -------------------------------------------------------------------------------- /src/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/src/scss/_mixins.scss -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darylldoyle/Gulp-Email-Creator/HEAD/src/scss/main.scss --------------------------------------------------------------------------------