Our standard folder structure is as follows:
└── assets
├── media
| ├── images
| ├── fonts
| └── uploads
├── styles
├── scripts
└── vendor
Additionally, an example of a typical sass directory structure can be found in the sass section.
Use lowercase for all file names (including images) with hyphens as delimiters between words.
The only exception to this rule is SCSS partials which should be prefixed with an underscore.
Good Examples
- modern.css
- global-masthead.html
- josh-with-a-horses-head.png
- _vars.scss
Do not store development assets such as wireframes, PSDs, sprite source files, etc. in the actual project respository.