Skip to content

Latest commit

 

History

History
executable file
·
35 lines (24 loc) · 864 Bytes

files-folders.md

File metadata and controls

executable file
·
35 lines (24 loc) · 864 Bytes

Files & Folders

Folder Structure

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.

File Names

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

Storage of Dev Assets

Do not store development assets such as wireframes, PSDs, sprite source files, etc. in the actual project respository.