-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresume.json
91 lines (91 loc) · 2.78 KB
/
resume.json
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
---
layout: null
---
{
"basics": {
"name": {{ site.data.bio.name | jsonify }},
"label": {{ site.data.bio.role | jsonify }},
"picture": {{ site.data.bio.avatar | jsonify }},
"email": {{ site.data.bio.email | jsonify }},
"phone": {{ site.data.bio.phone | jsonify }},
"website": {{ site.data.bio.website | jsonify }},
"summary": {{ site.data.bio.summary | jsonify }},
"location": {
"address": {{ site.data.bio.location.address | jsonify }},
"postalCode": {{ site.data.bio.location.postalcode | jsonify }},
"city": {{ site.data.bio.location.city | jsonify }},
"countryCode": {{ site.data.bio.location.countrycode | jsonify }},
"region": {{ site.data.bio.location.region | jsonify }}
},
"profiles": [
{% for contact in site.data.contact-links %}
{
"network": {{ contact.name | jsonify }},
"username": {{ contact.username | jsonify }},
"url": {{ contact.link | jsonify }}
}{% if forloop.last%}{% else %},{% endif %}{% endfor %}
]
},
"work": [
{% for work in site.data.work %}
{
"company": {{ work.company | jsonify }},
"position": {{ work.role | jsonify }},
"startDate": {{ work.startdate | jsonify }},
"endDate": {{ work.enddate | jsonify }},
"summary": {{ work.summary | jsonify }},
"highlights": [
{% for item in work.highlights %}
"{{ item.item }}"{% if forloop.last%}{% else %},{% endif %}
{% endfor %}
]
}{% if forloop.last%}{% else %},{% endif %}{% endfor %}
],
"volunteer": [{}],
"education": [
{% for edu in site.data.education %}
{
"institution": {{ edu.school | jsonify }},
"area": {{ edu.course | jsonify }},
"startDate": {{ edu.startdate | jsonify }},
"endDate": {{ edu.enddate | jsonify }},
"summary": {{ edu.summary | jsonify }},
"highlights": [
{% for item in edu.highlights %}
"{{ item.item }}"{% if forloop.last%}{% else %},{% endif %}
{% endfor %}
]
}{% if forloop.last%}{% else %},{% endif %}{% endfor %}
],
"awards": [],
"publications": [],
"skills": [
{% for skill in site.data.skill-good %}
{
"name": {{ skill.name | jsonify }},
"level": "Highly Proficient",
"keywords": []
},{% endfor %}
{% for skill in site.data.skill-okay %}
{
"name": {{ skill.name | jsonify }},
"level": "Working Experience",
"keywords": []
},{% endfor %}
{% for skill in site.data.skill-learning %}
{
"name": {{ skill.name | jsonify }},
"level": "In progress",
"keywords": []
}{% if forloop.last%}{% else %},{% endif %}{% endfor %}
],
"languages": [
{% for lang in site.data.languages %}
{
"name": {{ lang.name | jsonify }},
"level": {{ lang.level | jsonify }}
}{% if forloop.last%}{% else %},{% endif %}{% endfor %}
],
"interests": [],
"references": []
}