Skip to content

Commit 3e47e4c

Browse files
committed
Add frontend-md + extend readme
1 parent 63a94d6 commit 3e47e4c

File tree

3 files changed

+185
-0
lines changed

3 files changed

+185
-0
lines changed

FRONTEND.md

+175
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
# Hood.ie Sass/JS
2+
3+
Frontend code structure for Hood.ie Sass/JS.
4+
5+
Generated 12 February 2015 using [Frontend.md](http://github.com/animade/frontend-md)
6+
7+
---
8+
9+
### Stylesheets
10+
11+
````
12+
dist/
13+
|
14+
|- sass/
15+
| |- _blog.scss _____________________________ #
16+
| |- _breakpoints.scss ______________________ #
17+
| |- _colour.scss ___________________________ #
18+
| |- _events.scss ___________________________ #
19+
| |- _footer.scss ___________________________ #
20+
| |- _functions.scss ________________________ #
21+
| |- _layout.scss ___________________________ #
22+
| |- _modules.scss __________________________ #
23+
| |- _nav.scss ______________________________ #
24+
| |- _reset.scss ____________________________ #
25+
| |- _teaser-index.scss _____________________ #
26+
| |- _typo.scss _____________________________ #
27+
| |- base.scss ______________________________ #
28+
````
29+
30+
### Javascripts
31+
32+
````
33+
dist/
34+
|
35+
|- js/
36+
| |- events.js ______________________________ #
37+
| |- icheck.min.js __________________________ #
38+
| |- jquery.sheetrock.min.js ________________ #
39+
| |- main.js ________________________________ #
40+
|
41+
| |- jquery/
42+
| |- .bower.json __________________________ # -
43+
| |- MIT-LICENSE.txt ______________________ # -
44+
| |- bower.json ___________________________ # -
45+
|
46+
| |- src/
47+
| |- ajax.js ____________________________ #
48+
| |- attributes.js ______________________ #
49+
| |- callbacks.js _______________________ #
50+
| |- core.js ____________________________ #
51+
| |- css.js _____________________________ #
52+
| |- data.js ____________________________ #
53+
| |- deferred.js ________________________ #
54+
| |- deprecated.js ______________________ #
55+
| |- dimensions.js ______________________ #
56+
| |- effects.js _________________________ #
57+
| |- event.js ___________________________ #
58+
| |- intro.js ___________________________ #
59+
| |- jquery.js __________________________ #
60+
| |- manipulation.js ____________________ #
61+
| |- offset.js __________________________ #
62+
| |- outro.js ___________________________ #
63+
| |- queue.js ___________________________ #
64+
| |- selector-native.js _________________ #
65+
| |- selector-sizzle.js _________________ #
66+
| |- selector.js ________________________ #
67+
| |- serialize.js _______________________ #
68+
| |- traversing.js ______________________ #
69+
| |- wrap.js ____________________________ #
70+
|
71+
| |- var/
72+
| |- arr.js ___________________________ #
73+
| |- class2type.js ____________________ #
74+
| |- concat.js ________________________ #
75+
| |- hasOwn.js ________________________ #
76+
| |- indexOf.js _______________________ #
77+
| |- pnum.js __________________________ #
78+
| |- push.js __________________________ #
79+
| |- rnotwhite.js _____________________ #
80+
| |- slice.js _________________________ #
81+
| |- strundefined.js __________________ #
82+
| |- support.js _______________________ #
83+
| |- toString.js ______________________ #
84+
|
85+
| |- traversing/
86+
| |- findFilter.js ____________________ #
87+
|
88+
| |- var/
89+
| |- rneedsContext.js _______________ #
90+
|
91+
| |- sizzle/
92+
|
93+
| |- dist/
94+
| |- sizzle.js ______________________ #
95+
| |- sizzle.min.js __________________ #
96+
| |- sizzle.min.map _________________ # -
97+
|
98+
| |- queue/
99+
| |- delay.js _________________________ #
100+
|
101+
| |- manipulation/
102+
| |- _evalUrl.js ______________________ #
103+
| |- support.js _______________________ #
104+
|
105+
| |- var/
106+
| |- rcheckableType.js ______________ #
107+
|
108+
| |- exports/
109+
| |- amd.js ___________________________ #
110+
| |- global.js ________________________ #
111+
|
112+
| |- event/
113+
| |- alias.js _________________________ #
114+
| |- support.js _______________________ #
115+
|
116+
| |- effects/
117+
| |- Tween.js _________________________ #
118+
| |- animatedSelector.js ______________ #
119+
|
120+
| |- data/
121+
| |- Data.js __________________________ #
122+
| |- accepts.js _______________________ #
123+
|
124+
| |- var/
125+
| |- data_priv.js ___________________ #
126+
| |- data_user.js ___________________ #
127+
|
128+
| |- css/
129+
| |- addGetHookIf.js __________________ #
130+
| |- curCSS.js ________________________ #
131+
| |- defaultDisplay.js ________________ #
132+
| |- hiddenVisibleSelectors.js ________ #
133+
| |- support.js _______________________ #
134+
| |- swap.js __________________________ #
135+
|
136+
| |- var/
137+
| |- cssExpand.js ___________________ #
138+
| |- getStyles.js ___________________ #
139+
| |- isHidden.js ____________________ #
140+
| |- rmargin.js _____________________ #
141+
| |- rnumnonpx.js ___________________ #
142+
|
143+
| |- core/
144+
| |- access.js ________________________ #
145+
| |- init.js __________________________ # Initialize a jQuery object
146+
| |- parseHTML.js _____________________ #
147+
| |- ready.js _________________________ #
148+
|
149+
| |- var/
150+
| |- rsingleTag.js __________________ #
151+
|
152+
| |- attributes/
153+
| |- attr.js __________________________ #
154+
| |- classes.js _______________________ #
155+
| |- prop.js __________________________ #
156+
| |- support.js _______________________ #
157+
| |- val.js ___________________________ #
158+
|
159+
| |- ajax/
160+
| |- jsonp.js _________________________ #
161+
| |- load.js __________________________ #
162+
| |- parseJSON.js _____________________ #
163+
| |- parseXML.js ______________________ #
164+
| |- script.js ________________________ #
165+
| |- xhr.js ___________________________ #
166+
|
167+
| |- var/
168+
| |- nonce.js _______________________ #
169+
| |- rquery.js ______________________ #
170+
|
171+
| |- dist/
172+
| |- jquery.js __________________________ #
173+
| |- jquery.min.js ______________________ #
174+
| |- jquery.min.map _____________________ # -
175+
````

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ To get started check out the recent version and type npm install.
77
The default task (just type 'grunt') will fire up a local server at localhost:1337 with livereload and dev Sass compiling (including sourcemap and nested output).
88
There's also a production task ('grunt build') which at this point just spits out a compressed CSS file, without sourcemap in a dedicated folder(css/build).
99

10+
## FE structure overview
11+
12+
You can get a quick overview about the used Sass and JS files in the FRONTEND.md file.
13+
1014
## Editorconfig & coding standards
1115

1216
<img src="http://i.giphy.com/7SEOvVtOdtU2Y.gif" />

package.json

+6
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,11 @@
1212
"grunt-sass": "^0.14.2",
1313
"grunt-string-replace": "^1.0.0",
1414
"time-grunt": "^1.0.0"
15+
},
16+
17+
"frontend": {
18+
"name": "Hood.ie Sass/JS",
19+
"stylesheets": "dist/sass",
20+
"javascripts": "dist/js"
1521
}
1622
}

0 commit comments

Comments
 (0)