├── .editorconfig ├── .eslintrc ├── .gitignore ├── .stylintrc ├── .travis.yml ├── LICENSE.txt ├── README.md ├── critical-path.js ├── dev ├── images │ └── logo.jpg ├── scripts │ ├── main.js │ └── modules │ │ └── my-module.js ├── styles │ ├── base │ │ ├── base.styl │ │ ├── fonts.styl │ │ └── helpers.styl │ ├── components │ │ └── my-component.styl │ ├── config │ │ ├── aliases.styl │ │ ├── functions.styl │ │ ├── mediaqueries.styl │ │ └── variables.styl │ ├── layouts │ │ ├── container.styl │ │ └── simple-grid.styl │ ├── main.styl │ └── vendors │ │ └── normalize.styl └── views │ ├── includes │ ├── analytics.pug │ ├── metatags.pug │ ├── scripts.pug │ └── styles.pug │ ├── layouts │ └── default.pug │ └── pages │ └── index.pug ├── dist ├── assets │ ├── css │ │ └── main.css │ ├── images │ │ └── logo.jpg │ └── js │ │ ├── bundle.main.js │ │ └── bundle.vendor.js └── index.html ├── imagemin.js ├── options.json ├── package.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | coverage 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/.stylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /critical-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/critical-path.js -------------------------------------------------------------------------------- /dev/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/images/logo.jpg -------------------------------------------------------------------------------- /dev/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/scripts/main.js -------------------------------------------------------------------------------- /dev/scripts/modules/my-module.js: -------------------------------------------------------------------------------- 1 | export default function() { 2 | console.log('Simple Boilerplate is working!'); 3 | } 4 | -------------------------------------------------------------------------------- /dev/styles/base/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/base/base.styl -------------------------------------------------------------------------------- /dev/styles/base/fonts.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/base/fonts.styl -------------------------------------------------------------------------------- /dev/styles/base/helpers.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/base/helpers.styl -------------------------------------------------------------------------------- /dev/styles/components/my-component.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/components/my-component.styl -------------------------------------------------------------------------------- /dev/styles/config/aliases.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/config/aliases.styl -------------------------------------------------------------------------------- /dev/styles/config/functions.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/config/functions.styl -------------------------------------------------------------------------------- /dev/styles/config/mediaqueries.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/config/mediaqueries.styl -------------------------------------------------------------------------------- /dev/styles/config/variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/config/variables.styl -------------------------------------------------------------------------------- /dev/styles/layouts/container.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/layouts/container.styl -------------------------------------------------------------------------------- /dev/styles/layouts/simple-grid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/layouts/simple-grid.styl -------------------------------------------------------------------------------- /dev/styles/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/main.styl -------------------------------------------------------------------------------- /dev/styles/vendors/normalize.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/styles/vendors/normalize.styl -------------------------------------------------------------------------------- /dev/views/includes/analytics.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/views/includes/analytics.pug -------------------------------------------------------------------------------- /dev/views/includes/metatags.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/views/includes/metatags.pug -------------------------------------------------------------------------------- /dev/views/includes/scripts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/views/includes/scripts.pug -------------------------------------------------------------------------------- /dev/views/includes/styles.pug: -------------------------------------------------------------------------------- 1 | link(rel="stylesheet", href=root+"assets/css/main.css") 2 | -------------------------------------------------------------------------------- /dev/views/layouts/default.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/views/layouts/default.pug -------------------------------------------------------------------------------- /dev/views/pages/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dev/views/pages/index.pug -------------------------------------------------------------------------------- /dist/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dist/assets/css/main.css -------------------------------------------------------------------------------- /dist/assets/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dist/assets/images/logo.jpg -------------------------------------------------------------------------------- /dist/assets/js/bundle.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dist/assets/js/bundle.main.js -------------------------------------------------------------------------------- /dist/assets/js/bundle.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dist/assets/js/bundle.vendor.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/dist/index.html -------------------------------------------------------------------------------- /imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/imagemin.js -------------------------------------------------------------------------------- /options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/options.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjnr/Simple-Boilerplate/HEAD/webpack.config.js --------------------------------------------------------------------------------