File Structure
This section will show you how to keep your files organized. Our theme file structure that looks like this.
Theme folder and file structure
As mentioned previously, the default Block themes are some of the best examples of good theme development.
For instance, here is how the Block Theme organizes its file structure:
- 
                                       BlockFolder contains all template source and production files. - 
                                             distCompiled version - Ready to use 
- 
                                             node_modulesDirectory where npm installs dependencies. 
- 
                                             srcThis folder holds all template source files and folder. - 
                                                   assets - 
                                                         cssCompiled CSS 
- 
                                                         fontsAll fonts are used in the theme. 
- 
                                                         imagesAll the images are used in the theme 
- 
                                                         jsAll Javascript source files used in theme. 
- 
                                                         scssAll SASS file and folder included in it 
 
- 
                                                         
- 
                                                   docsA Complete Documentation for theme. 
- 
                                                   pagesAll the theme HTML pages with Subfolder. 
- 
                                                   partialsA specific loop header and footer files for the templating. 
- 
                                                   index.htmlIndex file is start file run when the gulp 
- 
                                                   gulpfile.jsConfiguration file for Gulp library. It contains all tasks you want to perform with Gulp. Learn more about it from section or Working with Gulp official Gulp documentation 
 
- 
                                                   
 
-