File tree 3 files changed +443
-1
lines changed
3 files changed +443
-1
lines changed Original file line number Diff line number Diff line change @@ -123,3 +123,49 @@ body
123
123
margin-left : auto
124
124
margin-right : auto
125
125
width : 600px
126
+
127
+ #contributors
128
+ margin-left : auto
129
+ margin-right : auto
130
+ width : 600px
131
+ overflow : auto
132
+ margin-bottom : 3em
133
+
134
+ #contributors
135
+ li ,
136
+ list-style-type : none
137
+ width : 180px
138
+ margin-right : 12px
139
+ margin-bottom : 12px
140
+ overflow : auto
141
+ float : left
142
+ padding : 1px 0px
143
+
144
+ #contributors
145
+ li , a ,
146
+ display : block
147
+ text-decoration : none
148
+ overflow : auto
149
+
150
+ #contributors
151
+ li , span ,
152
+ display : block
153
+ float : left
154
+ margin-left : 12px
155
+ font-size : 15px
156
+ color : #aaa
157
+
158
+ #contributors
159
+ li , a , span ,
160
+ font-size : 15px
161
+ margin-top : 7px
162
+
163
+ #contributors
164
+ li , img ,
165
+ float : left
166
+ -webkit-border-radius : 3px
167
+ -moz-border-radius : 3px
168
+ border-radius : 3px
169
+ margin-right : 12px
170
+
171
+
Original file line number Diff line number Diff line change 1
-
2
1
< title > About Kandan</ title >
3
2
4
3
< div class ="about ">
58
57
< li > < a href ="http://kandan-demo.kandanapp.com/ "> Kandan Demo</ a > (Yes we eat our own DogFood)</ li >
59
58
</ ul >
60
59
60
+ < h3 > Contributors</ h3 >
61
+ < div id ="contributors "> </ div >
62
+ < script >
63
+ $ . getJSON ( 'contributors.json' , function ( data ) {
64
+ var output = "<ul>" ;
65
+ for ( var i in data . contributors ) {
66
+ output += "" ;
67
+ output += "<span><li><img src='https://secure.gravatar.com/avatar/" + data . contributors [ i ] . gravatar_id + "' height='30' width='30'> <a href='" + data . contributors [ i ] . html_url + "'>" + data . contributors [ i ] . login + "</a></li></span>" ;
68
+ }
69
+
70
+ output += "</ul></div>" ;
71
+ document . getElementById ( "contributors" ) . innerHTML = output ;
72
+ } ) ;
73
+ </ script >
74
+
61
75
< h3 > Contact Us</ h3 >
62
76
< p > If you find any security issues please submit an < a href ="https://github.com/kandanapp/kandan/issues "> Issue</ a > or < a href ="mailto:admin@kandanapp.com "> email us</ a > .</ p >
63
77
< br > < br >
You can’t perform that action at this time.
0 commit comments