You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ This is not to say that Web Starter Kit cannot be used in browsers older than th
46
46
| Performance optimization | Minify and concatenate JavaScript, CSS, HTML and images to help keep your pages lean (Run `gulp` to create an optimised version of your project to `/assets`). |
47
47
| Code Linting | JavaScript code linting is done using [esLint](https://www.npmjs.com/package/gulp-eslint) - a linter tool for identifying and reporting on patterns in JavaScript (used airbnb-base rules https://www.npmjs.com/package/eslint-config-airbnb-base). HTML code hinting is done using [HtmlHint](https://www.npmjs.com/package/gulp-htmlhint). |
48
48
| ES2015(ES6) Support | Optional ES2015 support .You can use all kind of ES6 features here. ES2015 source code will be automatically transpiled to ES5 for wide browser support. |
49
+
| HTML templating | Used [gulp-file-include](https://www.npmjs.com/package/gulp-file-include) for templating html files. |
49
50
| Built-in HTTP Server | A built-in server for previewing your site locally while you develop and iterate. |
50
51
| Live Browser Reloading | Reload the browser in real-time anytime an edit is made without the need for an extension (Run `gulp` and edit your files). |
51
52
| Cross-device Synchronization | Synchronize clicks, scrolls, forms and live-reload across multiple devices as you edit your project. Powered by [BrowserSync](http://browsersync.io) (Run `gulp` and open up the IP provided on other devices on your network). |
@@ -179,6 +180,9 @@ In `src` folder you can find all sources for the project (images, sass , javascr
179
180
## `src` folder structure
180
181
181
182
```
183
+
├── html
184
+
├── partials #Folder for html components, that we can include into the templates
185
+
├── templates #Folder for source html templates of pages
182
186
├── images #Folder for storing images
183
187
├── js #Folder for storing js files
184
188
├── modules #Folder for storing js modules
@@ -273,6 +277,7 @@ Also, you might want to add these sass files to the ignore list (check `getPathe
273
277
| build-styles-vendors | Compiles and minifies all plugins scss from `src/vendor_entries` to `production` folder. |
0 commit comments