 Buy now
            
            Buy now
          Project structure
| Folder / File name | Description | 
|---|---|
| Around | Folder contains all template source and production files. | 
| Around / src | This folder holds all template source files like .pug, .scss, .js that are then processed (compiled / minified) to distfolder. | 
| Around / dist | Folder contains all template distribution files like .html, .css, .js that have been processed (compiled / minified) from srcfolder using Node.js and Gulp. | 
| Around / dist / vendor | This folder contains all vendor plugins' .js / .cssfiles. | 
| Around / package.json | File contains meta data about your app or module. Most importantly, it includes the list of dependencies to install from npm when running npm install. | 
| Around / gulpfile.js | Configuration file for Gulp library. It contains all tasks you want to perform with Gulp. Learn more about it from Working with Gulp section or official Gulp documentation. | 
| Around / src / js | This folder contains main theme.jsandcomponentssubfolder with all modules.theme.jsis processed (compiled / minified) into 2 files:dist/js/theme.jsanddist/js/theme.min.js. The latter is linked to all.htmldocuments. | 
| Around / src / scss | This folder contains all project sassfiles that are compiled and minified to styles indist/css/folder. | 
| Around / src / templates | This folder contains all pugfiles that are compiled into HTML indist,dist/componentsanddist/docsfolders. | 
Note: if you do not use Pro Front-End setup with Node.js and Gulp and want directly edit html / css / js files you should be looking into dist folder.
Whether you work with Node.js and Gulp or not you can still take advantage of preprocessors for HTML and CSS.
In this case you might want to learn how to use Pug and Sass.