forked from thisisshrocit/CV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcn.html
181 lines (155 loc) · 6.46 KB
/
cn.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
---
layout: null
permalink: /cn/
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>简历-{{ site.data.my_information.last_name-cn }}{{ site.data.my_information.first_name-cn }}</title>
<link rel="shortcut icon" href="/img/favicon.ico">
<!-- Normalize or reset CSS with your favorite library -->
<link rel="stylesheet" href="/css/normalize-3.0.3.css">
<!-- Load paper.css for happy printing -->
<link rel="stylesheet" href="/css/paper.css">
<!-- Load font-awesome.css for icons -->
<link rel="stylesheet" href="/css/font-awesome.min.css">
<!-- Load my custon.css -->
<link rel="stylesheet" href="/css/custom.css">
<!-- Set page size here: A5, A4 or A3 -->
<!-- Set also "landscape" if you need -->
<style>@page { size: A4 }</style>
</head>
<!-- Set "A5", "A4" or "A3" for class name -->
<!-- Set also "landscape" if you need -->
<body class="A4">
<!-- Each sheet element should have the class "sheet" -->
<!-- "padding-**mm" is optional: you can set 10, 15, 20 or 25 -->
<section class="sheet padding-20mm">
<!-- Write HTML just like a web page -->
<article>
<div class="information">
<div class="basic_information">
<h1 class="cv_name">{{ site.data.my_information.last_name-cn }}{{ site.data.my_information.first_name-cn }}</h1>
<h2 style="font-family: Monospace;">{{ site.data.my_information.job_title-cn }}</h2>
<ul class="basic_info">
<li>• 年龄: {{ site.data.my_information.age }} </li>
<li>• 性别: {{ site.data.my_information.gender-cn }} </li><br>
<li>• 国籍: {{ site.data.my_information.nationality-cn }} </li>
<li>• 学历: {{ site.data.my_information.degree-cn }} </li>
</ul>
</div>
<div class="social_information">
<ul style="list-style: none;float: left;">
<li><i class="fa fa-github"></i></li>
<li><i class="fa fa-map-marker"></i></li>
<li><i class="fa fa-envelope"></i></li>
<li><i class="fa fa-phone"></i></li>
<li><i class="fa fa-globe"></i></li>
</ul>
<ul style="list-style: none;float: right;">
<li>{{ site.data.my_information.github_username }}</li>
<li>{{ site.data.my_information.address-cn }}</li>
<li>{{ site.data.my_information.email }}</li>
<li>{{ site.data.my_information.phone }}</li>
<li>{{ site.data.my_information.website }}</li>
</ul>
</div>
</div>
<div id="summary">
<i class="fa fa-info-circle fa-lg"></i> <p class="item">概述</p>
<hr>
<span style="line-height: 7mm;">{{ site.data.my_summary.summary-cn }}</span>
</div>
<div id="work-experience">
<i class="fa fa-users fa-lg"></i> <p class="item">工作经验</p>
<hr>
{% for work in site.data.my_work %}
<div style="height: 42mm;">
<div style="float: left;height: 35mm;width: 78%;">
<span class="arial-black">{{ work.company-cn }}</span>
<span class="trebuchet">({{ work.location-cn }})</span>
<span class="trebuchet">{{ work.title-cn }}</span>
<br>
<span class="degree">{{ work.desc-cn }}</span>
</div>
<p class="work-fromto">{{ work.fromto-cn }}</p>
</div>
{% endfor %}
</div>
<div id="education">
<i class="fa fa-mortar-board fa-lg"></i> <p class="item">教育经历</p>
<hr>
{% for edu in site.data.my_education %}
<div style="height: 21mm;">
<div style="float: left;height: 21mm;width: 78%;">
<span class="arial-black">{{ edu.school-cn }}</span>
<span class="trebuchet">{{ edu.location-cn }}</span>
<br>
<span class="degree">{{ edu.degree-cn }}</span>
<span class="arial">{{ edu.curriculum-cn }}</span>
</div>
<p class="edu-fromto">{{ edu.fromto }}</p>
</div>
{% endfor %}
</div>
</article>
</section>
<!-- second page -->
<section class="sheet padding-20mm">
<article>
<div id="language" style="display: inline-block;width: 100%;">
<i class="fa fa-commenting fa-lg"></i> <p class="item">语言</p>
<hr>
{% for lang in site.data.my_language %}
<div style="width: 50%;float: left;"><span class="arial-rounded">{{ lang.language-cn }}</span><span class="trebuchet">{{ lang.level-cn }}</span></div>
{% endfor %}
</div>
<div id="skills">
<i class="fa fa-cogs fa-lg"></i> <p class="item">技能</p>
<hr>
<span class="arial-rounded">编程语言:</span><span class="trebuchet">{{ site.data.my_skills.program_language }}</span><br>
<span class="arial-rounded">Platform:</span><span class="trebuchet">{{ site.data.my_skills.platform }}</span><br>
<span class="arial-rounded">开发环境:</span><span class="trebuchet">{{ site.data.my_skills.development }}</span><br>
<span class="arial-rounded">技术栈:</span><span class="trebuchet">{{ site.data.my_skills.stack }}</span><br>
</div>
<div id="project">
<i class="fa fa-code fa-lg"></i> <p class="item">Github的项目</p>
<hr>
{% for project in site.data.my_project %}
<span class="arial-black">{{ project.name }}</span>
<span class="trebuchet">{{ project.language }}</span>
<br>
<span class="degree">{{ project.desc-cn }}</span>
<br>
{% endfor %}
</div>
<div id="research">
<i class="fa fa-institution fa-lg"></i> <p class="item">研究方向</p>
<hr>
<ul>
{% for research in site.data.my_research %}
<li><span class="arial-rounded">{{ research.name-cn }}</span><span class="trebuchet">{{ research.details-cn }}</span></li>
{% endfor%}
</ul>
</div>
</article>
</section>
<!-- if two pages are not enough for you, please cut/paste some sections to this page
<section class="sheet padding-20mm">
<article>
</article>
</section>
-->
<a href="/" style="position: fixed;right: 20px; top: 10px;color: white;text-decoration: none;">English</a>
</body>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?{{ site.ba.uuid }}";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</html>