├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── .stylelintrc.js ├── LICENSE ├── README.md ├── package.json ├── source ├── fonts │ ├── Roboto-Regular.woff │ └── Roboto-Regular.woff2 ├── html │ ├── includes │ │ ├── common │ │ │ ├── footer.html │ │ │ └── header.html │ │ └── index │ │ │ ├── hero.html │ │ │ └── structure.html │ └── views │ │ └── index.html ├── img │ └── logo.svg ├── js │ ├── index.js │ └── script.js ├── root │ └── manifest.json ├── scss │ ├── blocks │ │ ├── container.scss │ │ ├── header.scss │ │ ├── hero.scss │ │ ├── logo.scss │ │ ├── nav.scss │ │ └── visually-hidden.scss │ ├── font-face.scss │ ├── global.scss │ ├── style.scss │ └── variables.scss └── vendors │ └── normalize-css │ └── normalize.min.css └── webpack ├── helpers └── generateHtmlPlugins.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /source/fonts/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/fonts/Roboto-Regular.woff -------------------------------------------------------------------------------- /source/fonts/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/fonts/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /source/html/includes/common/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/html/includes/common/footer.html -------------------------------------------------------------------------------- /source/html/includes/common/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/html/includes/common/header.html -------------------------------------------------------------------------------- /source/html/includes/index/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/html/includes/index/hero.html -------------------------------------------------------------------------------- /source/html/includes/index/structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/html/includes/index/structure.html -------------------------------------------------------------------------------- /source/html/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/html/views/index.html -------------------------------------------------------------------------------- /source/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/img/logo.svg -------------------------------------------------------------------------------- /source/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/js/index.js -------------------------------------------------------------------------------- /source/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/js/script.js -------------------------------------------------------------------------------- /source/root/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/root/manifest.json -------------------------------------------------------------------------------- /source/scss/blocks/container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/blocks/container.scss -------------------------------------------------------------------------------- /source/scss/blocks/header.scss: -------------------------------------------------------------------------------- 1 | .header { 2 | background-color: $white; 3 | margin: 0; 4 | } 5 | -------------------------------------------------------------------------------- /source/scss/blocks/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/blocks/hero.scss -------------------------------------------------------------------------------- /source/scss/blocks/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/blocks/logo.scss -------------------------------------------------------------------------------- /source/scss/blocks/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/blocks/nav.scss -------------------------------------------------------------------------------- /source/scss/blocks/visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/blocks/visually-hidden.scss -------------------------------------------------------------------------------- /source/scss/font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/font-face.scss -------------------------------------------------------------------------------- /source/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/global.scss -------------------------------------------------------------------------------- /source/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/style.scss -------------------------------------------------------------------------------- /source/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/scss/variables.scss -------------------------------------------------------------------------------- /source/vendors/normalize-css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/source/vendors/normalize-css/normalize.min.css -------------------------------------------------------------------------------- /webpack/helpers/generateHtmlPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/webpack/helpers/generateHtmlPlugins.js -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtime-studio/create-html-boilerplate/HEAD/webpack/webpack.config.js --------------------------------------------------------------------------------