File tree Expand file tree Collapse file tree 8 files changed +34
-78
lines changed Expand file tree Collapse file tree 8 files changed +34
-78
lines changed Original file line number Diff line number Diff line change 2
2
3
3
const React = require ( 'react' ) ;
4
4
5
- const config = require ( '../../config' ) ;
6
5
const ResumePropTypes = require ( '../../prop_types/resume' ) ;
7
6
const Datetime = require ( '../../utils/datetime' ) ;
8
7
@@ -17,17 +16,12 @@ const Entry = React.createClass({
17
16
return (
18
17
< div className = 'row item' >
19
18
< div className = 'twelve columns' >
20
- < div className = 'two columns logo' >
21
- < img src = { config . logo [ this . props . entry . institution ] } alt = { this . props . entry . company } />
22
- </ div >
23
- < div className = 'ten columns additional-spacing content' >
24
- < h3 > { this . props . entry . institution } </ h3 >
25
- < p className = 'info' >
26
- { this . props . entry . area }
27
- < span > • </ span >
28
- < em className = 'date' > { startDate } - { endDate } </ em >
29
- </ p >
30
- </ div >
19
+ < h3 > { this . props . entry . institution } </ h3 >
20
+ < p className = 'info' >
21
+ { this . props . entry . area }
22
+ < span > • </ span >
23
+ < em className = 'date' > { startDate } - { endDate } </ em >
24
+ </ p >
31
25
</ div >
32
26
</ div >
33
27
) ;
Original file line number Diff line number Diff line change 3
3
const React = require ( 'react' ) ;
4
4
const PropTypes = React . PropTypes ;
5
5
6
- const config = require ( '../../config' ) ;
7
6
const ResumePropTypes = require ( '../../prop_types/resume' ) ;
8
7
const BulletPoints = require ( '../bullet_points' ) ;
9
8
const Datetime = require ( '../../utils/datetime' ) ;
@@ -24,18 +23,13 @@ const Entry = React.createClass({
24
23
return (
25
24
< div className = 'row item' >
26
25
< div className = 'twelve columns' >
27
- < div className = 'two columns logo' >
28
- < img src = { config . logo [ this . props . entry . company ] } alt = { this . props . entry . company } />
29
- </ div >
30
- < div className = 'ten columns content' >
31
- < h3 > { this . props . entry . company } </ h3 >
32
- < p className = 'info' >
33
- { this . props . entry . position }
34
- •
35
- < em className = 'date' > { startDate } - { endDate } </ em >
36
- </ p >
37
- < BulletPoints points = { this . props . entry . highlights } />
38
- </ div >
26
+ < h3 > { this . props . entry . company } </ h3 >
27
+ < p className = 'info' >
28
+ { this . props . entry . position }
29
+ •
30
+ < em className = 'date' > { startDate } - { endDate } </ em >
31
+ </ p >
32
+ < BulletPoints points = { this . props . entry . highlights } />
39
33
</ div >
40
34
{ divider }
41
35
</ div >
Original file line number Diff line number Diff line change @@ -15,15 +15,5 @@ module.exports = {
15
15
// works: 'Works',
16
16
testimonials : 'References'
17
17
// contact: 'Contact'
18
- } ,
19
-
20
- logo : {
21
- 'AfterShip Limited' : 'public/images/section/aftership.png' ,
22
- 'The University of Hong Kong' : 'public/images/section/hku.png' ,
23
- 'Demand Analytics Limited' : 'public/images/section/da.png' ,
24
- 'eSolutions Limited' : 'public/images/section/esolutions.png' ,
25
- 'Universal Enterprises (Pvt) Limited' : 'public/images/section/universal.png' ,
26
- 'The Hong Kong University of Science and Technology' : 'public/images/section/hkust.png' ,
27
- 'Simon Fraser University' : 'public/images/section/sfu.png'
28
18
}
29
19
} ;
Original file line number Diff line number Diff line change 27
27
"npm" : " >= 2.14.7"
28
28
},
29
29
"scripts" : {
30
- "bundle" : " webpack -p " ,
30
+ "bundle" : " webpack --production " ,
31
31
"lint" : " eslint ." ,
32
32
"prepush" : " npm run lint" ,
33
33
"setup" : " . ./setup.sh" ,
34
- "start" : " webpack-dev-server --hot --inline"
34
+ "start" : " webpack-dev-server --hot --inline" ,
35
+ "watch" : " webpack --watch"
35
36
},
36
37
"dependencies" : {},
37
38
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -289,10 +289,6 @@ strong.fa-quora {
289
289
290
290
# work .header-col { padding-top : 9px ; }
291
291
# work .main-col { padding-right : 10% ; }
292
- # work .row {
293
- padding-left : 0px ;
294
- padding-right : 0px ;
295
- }
296
292
297
293
.education , .work {
298
294
margin-bottom : 48px ;
@@ -347,14 +343,6 @@ strong.fa-quora {
347
343
348
344
# education .header-col { padding-top : 9px ; }
349
345
# education .main-col { padding-right : 10% ; }
350
- # education .row {
351
- padding-left : 0px ;
352
- padding-right : 0px ;
353
- }
354
- # education .additional-spacing {
355
- padding-top : 10px ;
356
- padding-bottom : 10px ;
357
- }
358
346
359
347
# education .info {
360
348
font : 16 px/24px 'librebaskerville-italic' , serif;
@@ -404,14 +392,6 @@ strong.fa-quora {
404
392
405
393
# skill .header-col { padding-top : 9px ; }
406
394
# skill .main-col { padding-right : 10% ; }
407
- # skill .row {
408
- padding-left : 0px ;
409
- padding-right : 0px ;
410
- }
411
-
412
- # skill .inside {
413
- margin-left : 10px ;
414
- }
415
395
416
396
# skill .info {
417
397
font : 16 px/24px 'librebaskerville-italic' , serif;
Original file line number Diff line number Diff line change 61
61
------------------------------------------------------------------- */
62
62
# work h1 { font : 16 px/24px 'opensans-bold' , sans-serif; }
63
63
# work .main-col { padding-right : 5% ; }
64
- # work .logo { display : none; }
65
- # work .content { padding-top : 5% ; }
66
64
67
65
# education h1 { font : 16 px/24px 'opensans-bold' , sans-serif; }
68
66
# education .main-col { padding-right : 5% ; }
69
- # education .logo { display : none; }
70
- # education .content { padding-top : 5% ; }
71
67
72
68
# skill h1 { font : 16 px/24px 'opensans-bold' , sans-serif; }
73
69
# skill .main-col { padding-right : 5% ; }
You can’t perform that action at this time.
0 commit comments