├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .nvmrc ├── .prettierrc ├── README.md ├── package.json ├── src ├── css │ └── index.scss ├── data │ ├── replacements.json │ └── site.json ├── entry.js ├── js │ └── index.js └── views │ ├── index.hbs │ ├── layout │ └── template.hbs │ └── partials │ └── header.hbs ├── webpack.config.js ├── webpack.helpers.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.16 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/package.json -------------------------------------------------------------------------------- /src/css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/src/css/index.scss -------------------------------------------------------------------------------- /src/data/replacements.json: -------------------------------------------------------------------------------- 1 | { 2 | "[images]": "/img/" 3 | } 4 | -------------------------------------------------------------------------------- /src/data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/src/data/site.json -------------------------------------------------------------------------------- /src/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/src/entry.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- 1 | console.log('Hello'); 2 | -------------------------------------------------------------------------------- /src/views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/src/views/index.hbs -------------------------------------------------------------------------------- /src/views/layout/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/src/views/layout/template.hbs -------------------------------------------------------------------------------- /src/views/partials/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/src/views/partials/header.hbs -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/webpack.helpers.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchheddles/webpack-handlebars-static/HEAD/yarn.lock --------------------------------------------------------------------------------