Fictional web development agency WebWizards built by group of passionate developers.
Thanks goes to these people:
Jovana MarΔeta π¬ π |
Aidas Kairys π¬ π |
Guenez Muhamed π¬ π |
Deepak Gudi π¬ π |
gulp-webpack-handlebars is a flexible template for web development. It includes many tools for creating responsive, high-performance and lightweight pages.
π Gulp 4 + Webpack 4 + Handlebars + Babel + BrowserSync π₯
- Install NodeJS and yarn
- Clone this repository
- Run
yarn install
Task Name | Description | Environment | |
---|---|---|---|
π§ | gulp |
Compile dev build, start the server and watch for changes | Development |
π | gulp build --production |
Compile production build | Production |
optional
Change color values (fill
orstroke
) in your SVG file tocurrentColor
to support dynamic color changes.- Put SVG file in
src/img/svg-sprite
directory. - The code from your SVG file will be included in one svg-sprite and placed in
dist/img/svg-sprite/sprite.svg
<svg viewBox="x0 y0 x1 y1">
<use href="assets/img/svg-sprite/sprite.svg#YOUR_SVG_FILE_NAME"></use>
</svg>
You can get viewBox value from your SVG file or using devTools on the page after including sprite.svg
<img src="assets/img/svg-sprite/sprite.svg#YOUR_SVG_FILE_NAME" alt="">
In this case, the image does not respond to color changes.
Type | List |
---|---|
Task Runner | Gulp |
CSS | SASS / SCSS, CleanCSS, Autoprefixer |
JS | Webpack, Babel |
JS Examples | FileInclude, Uglify |
HTML Templates | Handlebars.js, handlebars-layouts |
Images | ImageMin |
Live Reload | BrowserSync |
Debug | Sourcemaps, Plumber |
More | Favicons, SVG Sprites, Notifier, Changed |
Included JS | Jquery, Bootstrap 4, CurrentDevice |
|-- dist
|-- tasks
|-- src
| |-- fonts
| |-- img
| | |-- favicon
| | | |-- logo.png
| | |-- content (optional)
| | |-- main (optional)
| | |-- svg-sprite
| |-- js
| | |-- components
| | |-- other
| | |-- app.js
| | |-- main.js
| |-- styles
| | |-- components
| | |-- main.scss
| | |-- _app.scss
| | |-- _variables.scss
| |-- views
| | |-- data
| | |-- helpers
| | |-- partials
| | |-- templates
| | | |-- pages
| | | |-- index.html
|-- .babelrc.js
|-- .browserslistrc
|-- .gitignore
|-- gulpfile.babel.js
|-- package.json
|-- webpack.config.js
-
dist
- folder with the finished results of assembly. In dev mode, is the root of the server. -
tasks
- directory with gulp tasks. -
.babelrc.js
- babel static configuration. -
gulpfile.babel.js
- config and main tasks. -
src
- source files-
fonts
- fonts files in directories named by font name. For example fonts/Ubuntu/Regular.{woff, woff2, ttf} -
img
- all images for optimization:-
content
- optional directory (Implied as: dynamic images for pages, may be removed after placing the layout on the CMS) -
main
- optional directory (Implied as: static template images (logo, background and etc.)) -
favicon
- generating favicons from one image -
svg-sprite
- optimizes them and bakes them into SVG sprites
-
-
views
-
helpers
- Handlebars.js helpers -
partials
- Handlebars.js templates -
template
- site pages-
index.html
- entry point -
pages
- all pages
-
-
-
Copyright 2019 Maksim Abuzyarov under the MIT license.