-
Notifications
You must be signed in to change notification settings - Fork 8
/
resume.hbs
42 lines (40 loc) · 917 Bytes
/
resume.hbs
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
<title>{{#resume.basics}}{{name}} {{#if label}} - {{label}}{{/if}}{{/resume.basics}}</title>
<style>
{{{css}}}
</style>
<style media="print">
body { font-size: 12px; }
</style>
{{#resume.meta}}
{{#if accent.length}}
<style>
:root {
--accent: {{accent}};
}
</style>
{{/if}}
{{/resume.meta}}
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="resume">
{{> basics }}
{{> work }}
{{> skills }}
{{> certificates }}
{{> volunteer }}
{{> projects }}
{{> education }}
{{> awards }}
{{> publications }}
{{> languages }}
{{> interests }}
{{> references }}
</div>
</body>
</html>