├── .deployignore ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── README.md ├── config.json ├── deploy ├── gulpfile.config.js ├── gulpfile.js ├── init ├── package.json ├── plopfile.js ├── src ├── assets │ ├── favicon.ico │ ├── human.txt │ └── robots.txt ├── i18n │ ├── en.js │ └── fr.js ├── img │ └── screenshot.jpg ├── js │ └── app.js ├── markdown │ └── .empty ├── sass │ ├── _elements.sass │ ├── _generated.sass │ ├── _reset.css │ ├── styles.sass │ └── styles.vars.sass └── views │ ├── _components │ ├── _langs.html │ ├── _langs.sass │ ├── _navigation.html │ └── _navigation.sass │ ├── _layouts │ └── _default.html │ ├── _mixins │ ├── index.js │ ├── markdown.js │ ├── route-active.js │ ├── route.js │ └── svg.js │ ├── _partials │ ├── _footer.html │ ├── _footer.sass │ ├── _header.html │ └── _header.sass │ ├── _utils │ ├── _adpack.html │ └── _analytics.html │ ├── about │ ├── index.html │ ├── index.sass │ ├── subpage.html │ └── subpage.sass │ ├── index.html │ └── index.sass ├── templates ├── component │ ├── html.hbs │ └── sass.hbs ├── page │ ├── html.hbs │ └── sass.hbs └── partial │ ├── html.hbs │ └── sass.hbs └── webpack.config.js /.deployignore: -------------------------------------------------------------------------------- 1 | .* 2 | 3 | node_modules/* 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/config.json -------------------------------------------------------------------------------- /deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/deploy -------------------------------------------------------------------------------- /gulpfile.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/gulpfile.config.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/gulpfile.js -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/init -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/package.json -------------------------------------------------------------------------------- /plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/plopfile.js -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/human.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/assets/human.txt -------------------------------------------------------------------------------- /src/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/assets/robots.txt -------------------------------------------------------------------------------- /src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/i18n/en.js -------------------------------------------------------------------------------- /src/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/i18n/fr.js -------------------------------------------------------------------------------- /src/img/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/img/screenshot.jpg -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- 1 | console.log( 2 | (() => 'ES6 Bundle ok')() 3 | ); 4 | -------------------------------------------------------------------------------- /src/markdown/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sass/_elements.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/sass/_elements.sass -------------------------------------------------------------------------------- /src/sass/_generated.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/sass/_generated.sass -------------------------------------------------------------------------------- /src/sass/_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/sass/_reset.css -------------------------------------------------------------------------------- /src/sass/styles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/sass/styles.sass -------------------------------------------------------------------------------- /src/sass/styles.vars.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/sass/styles.vars.sass -------------------------------------------------------------------------------- /src/views/_components/_langs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_components/_langs.html -------------------------------------------------------------------------------- /src/views/_components/_langs.sass: -------------------------------------------------------------------------------- 1 | .langs 2 | -------------------------------------------------------------------------------- /src/views/_components/_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_components/_navigation.html -------------------------------------------------------------------------------- /src/views/_components/_navigation.sass: -------------------------------------------------------------------------------- 1 | .navigation 2 | -------------------------------------------------------------------------------- /src/views/_layouts/_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_layouts/_default.html -------------------------------------------------------------------------------- /src/views/_mixins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_mixins/index.js -------------------------------------------------------------------------------- /src/views/_mixins/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_mixins/markdown.js -------------------------------------------------------------------------------- /src/views/_mixins/route-active.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_mixins/route-active.js -------------------------------------------------------------------------------- /src/views/_mixins/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_mixins/route.js -------------------------------------------------------------------------------- /src/views/_mixins/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_mixins/svg.js -------------------------------------------------------------------------------- /src/views/_partials/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_partials/_footer.html -------------------------------------------------------------------------------- /src/views/_partials/_footer.sass: -------------------------------------------------------------------------------- 1 | .footer 2 | margin-top: 20px 3 | -------------------------------------------------------------------------------- /src/views/_partials/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_partials/_header.html -------------------------------------------------------------------------------- /src/views/_partials/_header.sass: -------------------------------------------------------------------------------- 1 | .header 2 | margin-bottom: 20px 3 | -------------------------------------------------------------------------------- /src/views/_utils/_adpack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_utils/_adpack.html -------------------------------------------------------------------------------- /src/views/_utils/_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/_utils/_analytics.html -------------------------------------------------------------------------------- /src/views/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/about/index.html -------------------------------------------------------------------------------- /src/views/about/index.sass: -------------------------------------------------------------------------------- 1 | #about-page 2 | -------------------------------------------------------------------------------- /src/views/about/subpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/about/subpage.html -------------------------------------------------------------------------------- /src/views/about/subpage.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/about/subpage.sass -------------------------------------------------------------------------------- /src/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/src/views/index.html -------------------------------------------------------------------------------- /src/views/index.sass: -------------------------------------------------------------------------------- 1 | #home-page 2 | -------------------------------------------------------------------------------- /templates/component/html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/templates/component/html.hbs -------------------------------------------------------------------------------- /templates/component/sass.hbs: -------------------------------------------------------------------------------- 1 | .{{ dashCase filename}} 2 | -------------------------------------------------------------------------------- /templates/page/html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/templates/page/html.hbs -------------------------------------------------------------------------------- /templates/page/sass.hbs: -------------------------------------------------------------------------------- 1 | #{{ dashCase filename }}-page 2 | -------------------------------------------------------------------------------- /templates/partial/html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/templates/partial/html.hbs -------------------------------------------------------------------------------- /templates/partial/sass.hbs: -------------------------------------------------------------------------------- 1 | .{{ dashCase filename}} 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaysalvat/boilerplate-static-website/HEAD/webpack.config.js --------------------------------------------------------------------------------