Partials

Folders

Put partials in folders when a group of files belongs together.

Dotted Names#

Dotted names map to folders:

php
<Shop.ProductCard />

This maps to:

          • product-card.php

When To Use Folders#

Folders are useful for grouped UI pieces:

  • shop/product-card.php
  • shop/product-price.php
  • navigation/site-header.php
  • forms/contact-field.php

Keep the folder names practical. They are for organizing source files, not for changing the public HTML.