Theme folder structure
public/
│
├── css/
├── dist/ (ignore this folder for now, you won't need to change any files here)
├── js/
├── index.html
├── layout.html (root HTML file, also known as the parent HTML file)
├── product.html (contains code for the products page; it inherits layout.html)
├── search.html (contains code for the search page; it inherits layout.html)
├── category.html (contains code for the category products page; it inherits layout.html)
├── categories.html (contains code for the categories page; it inherits layout.html)
├── subcategories.html (contains code for the subcategories page; it inherits layout.html)
├── coupon.html (contains code for the coupons page; it inherits layout.html)
├── advance-category-templates.html
└── product-variant-templates.html🤔 How is it different from frameworks like React?
Last updated