-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·135 lines (135 loc) · 7.28 KB
/
about.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
---
layout: author_layout
---
<div class="container">
<div class="row-center">
<div class="col-md-7">
{% if site.data.author.workHistory %}
<h3 class="title with-icon"><span class="glyphicon glyphicon-plane cat-title"></span>Work History</h3>
<ul class="timeline">
{% for work in site.data.author.workHistory %}
<li class="timeline-inverted">
{% if work.started %}
<div class="timeline-badge info">{{ work.started }}</div>
{% endif %}
<div class="timeline-panel grid-block">
<div class="timeline-heading">
{% if work.company %}
<h4 class="timeline-title">{{ work.company }} </h4>
{% endif %}
<p>
<small class="text-muted">
{% if work.title %}
{{ work.title }}
{% endif %}
</small>
</p>
<p>
<small class="text-muted">
{% if work.duration %}
<i class="fa fa-calendar"></i> {{ work.duration }} |
{% endif %}
{% if work.location %}
<i class="fa fa-map-marker"></i> {{ work.location }}
{% endif %}
</small>
</p>
</div>
<div class="timeline-body">
{% if work.description %}
<p>{{ work.description }}</p>
{% endif %}
</div>
</div>
</li>
{% endfor %}
</ul>
{% endif %}
{% if site.data.author.educationHistory %}
<h3 class="title with-icon"><span class="fa fa-book cat-title"></span>Education History</h3>
<ul class="timeline">
{% for education in site.data.author.educationHistory %}
<li class="timeline-inverted">
{% if education.started %}
<div class="timeline-badge info">{{ education.started }}</div>
{% endif %}
<div class="timeline-panel grid-block">
<div class="timeline-heading">
{% if education.organization %}
<h4 class="timeline-title">{{ education.organization }}</h4>
{% endif %}
<p>
<small class="text-muted">
{% if education.degree %}
{{ education.degree }}
{% endif %}
{% if education.major %}
, {{ education.major }}
{% endif %}
</small>
</p>
{% if education.duration %}
<p>
<small class="text-muted"><i class="fa fa-calendar"></i> {{ education.duration }}
</small>
</p>
{% endif %}
</div>
<div class="timeline-body">
{% if education.description %}
<p>{{ education.description }}</p>
{% endif %}
</div>
</div>
</li>
{% endfor %}
</ul>
{% endif %}
</div>
<div class="col-md-5">
{% if site.data.author.programmingSkills %}
<h3 class="title with-icon"><span class="fa fa-code cat-title"></span> Programming Skills</h3>
<div class="grid-block">
<ul class="list-unstyled list-skills">
{% for programmingSkill in site.data.author.programmingSkills %}
<li>
{% if programmingSkill.name %}
<span class="caption-skill">{{ programmingSkill.name }}</span>
{% endif %}
{% if programmingSkill.percentage %}
<div class="progress">
<div class="progress-bar" style="width: {{ programmingSkill.percentage }}">
<span>{{ programmingSkill.percentage }} </span>
</div>
</div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if site.data.author.languages %}
<div class="deviter"></div>
<h3 class="title with-icon"><span class="fa fa-globe cat-title"></span> Language Skills</h3>
<div class="grid-block">
<ul class="list-unstyled list-strip">
{% for language in site.data.author.languages %}
{% if language.name %}
{% if language.proficiency %}
<li>
<i class="fa fa-check"></i> <span class="badge badge-green badge-right-float">{{ language.proficiency }}</span>{{ language.name }}
</li>
{% endif %}
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
<div class="deviter"></div>
<h3 class="title with-icon"><span class="fa fa-location-arrow cat-title"></span> Location</h3>
<div class="grid-block">
<img src="http://restapi.amap.com/v3/staticmap?location=121.437361,31.166937&zoom=15&size=500*250&markers=mid,,A:121.4037323,31.19782533&key=4fbf0c0dfa89f726a84101e3a5d1bc50" style="border:0" frameborder="0" width="100%" height="100%">
</div>
</div>
</div>
</div>