forked from crispgm/resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
149 lines (142 loc) · 4.16 KB
/
resume.html
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
---
layout: null
permalink: /resume.html
---
<!DOCTYPE html>
<html>
<head>
<title>{{ site.data.resume.title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="{{ site.baseurl }}/css/resume.css">
</head>
<body>
<div class="container">
<header>
<div id="name-wrapper">
<div id="fullname">
{{ site.data.resume.name }}
</div>
<div id="jobtitle">
{{ site.data.resume.jobtitle }}
</div>
</div>
<div id="contact">
{% for item in site.data.resume.contact %}
<div class="contact-item">
<i class="fa {{ item.icon }} aria-hidden="true></i> {{ item.text }}
</div>
{% endfor %}
</div>
</header>
<section id="interests">
<div class="section-title">
Interests
</div>
<div class="section-content">
<div class="block">
<div class="block-content">
{{ site.data.resume.interest }}
</div>
</div>
</div>
</section>
<section id="education">
<div class="section-title">
Education
</div>
<div class="section-content">
{% for edu in site.data.resume.education %}
<div class="block">
<div class="block-title">
{{ edu.university }}
</div>
<div class="block-subtitle">
{{ edu.duration }} | {{ edu.location }} | {{ edu.gpa }}
</div>
<div class="block-content">
{{ edu.major }}
</div>
</div>
{% endfor %}
</div>
</section>
<section id="skills">
<div class="section-title">
Skills
</div>
<div class="section-content">
{% for skill in site.data.resume.skills %}
<div class="block">
<div class="block-title">
{{ skill.title }}
</div>
<div class="block-content">
{{ skill.items }}
</div>
</div>
{% endfor %}
</div>
</section>
<section id="awards">
<div class="section-title">
Honors & Awards
</div>
<div class="section-content">
{% for award in site.data.resume.awards %}
<div class="block">
<div class="block-content">
{{ award.name }}
</div>
</div>
{% endfor %}
</div>
</section>
<section id="experience">
<div class="section-title">
Experience
</div>
<div class="section-content">
{% for exp in site.data.resume.experience %}
<div class="block">
<div class="block-title">
{{ exp.title }}
</div>
<div class="block-subtitle">
{{ exp.duration }} | {{ exp.company }}
</div>
<div class="block-content">
{{ exp.description }}
</div>
</div>
{% endfor %}
</div>
</section>
<section id="projects">
<div class="section-title">
Projects
</div>
<div class="section-content">
{% for project in site.data.resume.projects %}
<div class="block">
<div class="block-title">
{{ project.name }}
</div>
<div class="block-subtitle">
{{ project.contribution }}
</div>
<div class="block-content">
{{ project.description }}
</div>
</div>
{% endfor %}
</div>
</section>
</div>
<footer>
Made with <i class="fa fa-heart aria-hidden="true></i> by Yu Cheng <span class="print">( <a href="javascript:window.print()">PDF</a> )</span>
</footer>
</body>
</html>