-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.template
160 lines (151 loc) · 4.43 KB
/
resume.template
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{bio.firstName}} {{bio.lastName}}</title>
<link href="http://bootswatch.com/lumen/bootstrap.min.css" rel="stylesheet" />
<style>
section header h3 {
margin: 0;
}
section > div {
border-left: 1px solid #efefef;
}
section {
min-height: 100px;
margin-bottom: 30px;
}
section div > h3 {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="row">
<div class="col-md-6">
<h1>{{bio.firstName}} {{bio.lastName}}</h1>
<h2>{{bio.location.city}}</h2>
</div>
<div class="col-md-6">
<img class="media-object img-circle pull-right" data-src="holder.js/64x64" alt="64x64" src="{{bio.gravatar}}" style="width: 100px; height: 100px; margin-top: 20px;">
</div>
</div>
<hr style="color: #ccc; height: 4px;" />
<section class="row">
<header class="col-md-3">
<h3>About</h3>
</header>
<div class="col-md-9">
<p>{{bio.summary}}</p>
{{#bio.phone.personal}}
<strong>Phone:</strong> {{bio.phone.personal}} <br />
{{/bio.phone.personal}}
{{#bio.email.personal}}
<strong>Email:</strong> {{bio.email.personal}}<br />
{{/bio.email.personal}}
{{#bio.profiles.twitter}}
<strong>Twitter:</strong> <a href="https://twitter.com/{{bio.profiles.twitter}}">@{{bio.profiles.twitter}}</a><br />
{{/bio.profiles.twitter}}
{{#bio.profiles.github}}
<strong>Github:</strong> <a href="https://github.com/{{bio.profiles.github}}">{{bio.profiles.github}}</a><br />
{{/bio.profiles.github}}
</div>
</section>
{{#work.length}}
<section class="row">
<header class="col-md-3">
<h3>Work Experience</h3>
</header>
<div class="col-md-9">
<div class="skills">
{{#work}}
<h3>{{company}}</h3>
<strong>{{position}}</strong>
<p>{{startDateYear}} - {{endDateYear}}</p>
<p>{{summary}}</p>
<ul>
{{#highlights}}
<li>{{.}}</li>
{{/highlights}}
</ul>
<hr />{{/work}}
</div>
</div>
</section>
{{/work.length}}
{{#education.length}}
<section class="row">
<header class="col-md-3">
<h3>Education</h3>
</header>
<div class="col-md-9">
<div class="skills">
{{#education}}
<h3>{{institution}}</h3>
<h4>{{educationDetail}}</h4>
<p>{{startDateYear}} - {{endDateYear}}</p>
<p>{{summary}}</p>
<ul>
{{#highlights}}
<li>{{.}}</li>
{{/highlights}}
</ul>
<hr />
{{/education}}
</div>
</div>
</section>
{{/education.length}}
{{#skills.length}}
<section class="row">
<header class="col-md-3">
<h3>Skills</h3>
</header>
<div class="col-md-9">
<div class="row-fluid skills">
{{#skills}}
<ul class="col-md-6">
<li>
<h4>{{name}}</h4>
<ul>
{{#keywords}}
<li>{{.}}</li>
{{/keywords}}
</ul>
</li>
</ul>
{{/skills}}
</div>
</div>
</section>
{{/skills.length}}
{{#references.length}}
<section class="row">
<header class="col-md-3">
<h3>References</h3>
</header>
<div class="col-md-9">
<div class="row-fluid skills">
{{#references}}
<p>{{reference}} -
<strong>{{name}}</strong>
</p>
{{/references}}
</div>
</div>
</section>
{{/references.length}}
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
</body>
</html>