静态资源目录规范指南。
【强制】 所有资源类型必须按以下目录放置;
src/ # static resource directory
|
|-- css/ # all generated CSS
| |-- global.sss # the global stylesheet
| ...
|
|-- img/ # all images
| |-- bg-body.jpg # body background
| ...
|
|-- js/ # all javascript files
| |-- main.js # general documentation
| |-- vendor # third-party plugins
| |-- modernizr-2.8.3.min.js
| |-- ...
| ...
|
|-- sass/ # all SASS files
| |-- global.scss # the global SASS
| |-- _slice.scss # automatic img to css
| |-- base # the base SASS
| |-- _base.scss
| |-- _mixins.scss
| |-- _normalize.scss
| |-- lego # the LEGO UI SASS
| |-- _lego.scss
| |-- _ui-box.scss
| |-- _ui-tab.scss
| |-- ...
| |-- biz1 # the business SASS
| |-- ...
| |-- biz2 # the business SASS
| |-- ...
|
|-- tpl/ # the templates
| |-- ...
|
`-- index.html # the html file
src/ # static resource directory
|
|-- css/ # all generated CSS
| |-- global.sss # the global stylesheet
| ...
|
|-- img/ # all images
| |-- bg-body.jpg # body background
| ...
|
|-- js/ # all javascript files
| |-- main.js # general documentation
| |-- vendor # third-party plugins
| |-- modernizr-2.8.3.min.js
| |-- ...
| ...
|
|-- sass/ # all SASS files
| |-- global.scss # the global SASS
| |-- _slice.scss # automatic img to css
| |-- base # the base SASS
| |-- _base.scss
| |-- _mixins.scss
| |-- _normalize.scss
| |-- lego # the LEGO UI SASS
| |-- _lego.scss
| |-- _ui-box.scss
| |-- _ui-tab.scss
| |-- ...
| |-- biz1 # the business SASS
| |-- ...
| |-- biz2 # the business SASS
| |-- ...
|
|-- font/ # all web fonts
| ...
|
|-- swf/ # the flash files
| |-- logo-duowan.swf
| |-- ...
|
|-- tpl/ # the templates
| |-- ...
|
`-- README.md # the project document
`-- index.html # the html file