-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextracode.js
106 lines (98 loc) · 2.59 KB
/
extracode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
if(document.getElementsByClassName('flex-item').length === 0) {
document.getElementById('topContacts').style.display = 'none';
}
if(document.getElementsByTagName('h1').length === 0) {
document.getElementById('header').style.display = 'none';
}
if(document.getElementsByClassName('work-entry').length === 0) {
document.getElementById('workExperience').style.display = 'none';
}
if(document.getElementsByClassName('project-entry').length === 0) {
document.getElementById('projects').style.display = 'none';
}
if(document.getElementsByClassName('education-entry').length === 0) {
document.getElementById('education').style.display = 'none';
}
if(document.getElementsByClassName('flex-item').length === 0) {
document.getElementById('lets-connect').style.display = 'none';
}
if(document.getElementById('map') === null) {
document.getElementById('mapDiv').style.display = 'none';
}
var work = {
"jobs": [
{
"employer": "Blue Web Solutions",
"title": "UI Developer",
"location": "Coimbatore",
"Date": "2014-Present"
},
{
"employer": "Blue Web Solutions",
"title": "UI Developer",
"location": "Coimbatore",
"Date": "2014-Present"
}
],
"Part-time": "MSP",
"intern": [
{
"nameof company": "company1",
"title": "MVP"
}
]
}
var projects = {
"project": [
{
"Title":"Pro1",
"Date worked": "Date",
"desc": "kjasnklndsnflsandlka",
"image": "http://placekitten.com/400/200"
},
{
"Title":"Pro1",
"Date worked": "Date",
"desc": "kjasnklndsnflsandlka",
"image": "http://placekitten.com/400/200"
}
]
}
var bio = {
"Name": " Mathan K A",
"Role": "UI Developer",
"WelcomeMess": "Welcome to my page",
"contacts": {
"Mobile": "8015571079",
"Mail": "hello2mathanka.in",
"FB": "mathanka",
"Skype": "mathanka"
},
"skills": [
{
"name": "Technical"
},
{
"name": "software"
}
]
}
var education = {
"college":
{
"Name": "SVS College",
"Location":"Coimbatore",
"Major":"B.E. Computer Science and Engineering",
"Date": "2010 to 2014"
},
"schools": [
{
"Name": "Kikani Higher Secondary school",
"Class": "HSC"
},
{
"Name": "Kikani Higher Secondary school",
"Class": "HSC"
}
]
}