Apsho | The folder contains all template sources and production files. |
Apsho/ src | This folder holds all template source files like .html, .htm, .scss, .js that are then processed (compiled / minified) to dist folder. |
Apsho/ package.json | The file contains metadata about your app or module. Most importantly, it includes the list of dependencies to install when running yarn. |
Apsho/ gulpfile.js | Configuration file for Gulp library. Later You have to install yarn. To run the project in development mode just type yarn dev and for final production, you have to run yarn build. |
Apsho/ src / js | This folder contains the main script.js  . script.js  is processed (compiled / minified) into  dist/js/script.js  and is linked to all .html  documents. |
Apsho/ src / scss | This folder contains all project sass files that are compiled and minified to styles in dist/css/ folder. |
Apsho/ src / vendor | This folder contains all vendor plugins’ .js / .css  files. Later these files compiled to Apsho/ dist/vendor folder. |
Apsho/ src / images | This folder contains images. Later these files were compiled to Apsho/ dist/ images folder. |
Apsho/ src / partials | This folder contains all .htm files that are compiled into HTML in dist folders. |
Apsho/ dist | Folder contains all template distribution files like .html, .css, .js, images that have been processed (compiled / minified) from src folder using Node.js and Gulp. |
Apsho/ dist/ vendor | This folder contains all vendor plugins’ .js / .css files. |
Apsho/ dist/ images | This folder contains all images. |
Apsho/ dist/ css | This folder contains theme’s .css files. |
Apsho/ dist/ js | This folder contains theme’s .js files. |