forked from zachfeldman/jsonresume-theme-onepageresume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.template
126 lines (126 loc) · 3.42 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{resume.basics.name}} Resume</title>
<style type="text/css">
{{css}}
</style>
</head>
<body>
<div id="page-wrap">
<img src="{{resume.basics.picture}}" id="pic" />
<div id="contact-info" class="vcard">
<!-- Microformats! -->
<h1 class="fn">{{resume.basics.name}}</h1>
<p>
Cell: <span class="tel">{{resume.basics.phone}}</span><br />
Email: <a class="email" href="mailto:{{resume.basics.email}}">{{resume.basics.email}}</a>
</p>
</div>
<div id="objective">
<p>{{resume.basics.summary}}</p>
</div>
<div class="clear"></div>
<dl>
<dd class="clear"></dd>
{{#if resume.work.length}}
<dt>Experience</dt>
{{#each resume.work}}
<dd>
<h4>
{{position}}
</h4>
<h2>{{company}}
<span>
{{formatDate startDate month="short" year="numeric"}} -
{{#if endDate.length}}
{{formatDate endDate month="short" year="numeric"}}
{{^}}
Present
{{/if}}
</span>
</h2>
{{summary}}
<ul>
{{#highlights}}
<li>{{.}}</li>
{{/highlights}}
</ul>
</dd>
{{/each}}
{{/if}}
<dd class="clear"></dd>
{{#if resume.education.length}}
<dt>Education</dt>
<dd>
{{#each resume.education}}
<h2>{{institution}}
<span>
{{formatDate startDate year="numeric"}} -
{{#if endDate.length}}
{{formatDate endDate year="numeric"}}
{{^}}
Present
{{/if}}
</span>
</h2>
{{studyType}}{{#area}} - <i>{{.}}</i>{{/area}}<br/>
<ul>
{{#courses}}
<li>{{.}}</li>
{{/courses}}
</ul>
{{/each}}
</dd>
{{/if}}
<dd class="clear"></dd>
{{#if resume.skills.length}}
<dt>Skills</dt>
<dd>
{{#each resume.skills}}
<h2>{{name}}</h2>
<p>{{keywords}}</p>
{{/each}}
</dd>
{{/if}}
<dd class="clear"></dd>
{{#if resume.languages.length}}
<dt>Languages</dt>
{{#each resume.languages}}
<dd>
{{language}} - <i>{{fluency}}</i>
</dd>
{{/each}}
{{/if}}
<dd class="clear"></dd>
{{#if resume.interests.length}}
<dt>Hobbies</dt>
<dd>
{{name}}
{{#each resume.interests}}
<h2>{{name}}</h2>
<p>{{keywords}}</p>
{{/each}}
</dd>
{{#each resume.interests}}
{{/each}}
{{/if}}
<dd class="clear"></dd>
<dt>References</dt>
{{#if resume.references.length}}
{{#each resume.references}}
<dd><i>{{reference}}</i><br>
<br><h2><span>{{name}}</span></h2>
</dd>
{{/each}}
{{^}}
<dd>Available on request</dd>
{{/if}}
<dd class="clear"></dd>
</dl>
<div class="clear"></div>
</div>
</body>
</html>