-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathresume.hbs
More file actions
35 lines (32 loc) · 820 Bytes
/
resume.hbs
File metadata and controls
35 lines (32 loc) · 820 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{resume.basics.name}}</title>
{{#if resume.basics.summary}}
<meta name="description" content="{{resume.basics.summary}}">
{{else}}
<meta name="description" content="{{resume.basics.name}}">
{{/if}}
<meta name="viewport" content="width=device-width, minimal-ui">
<meta name="resume-version" content="{{resume.meta.version}}">
<style>{{{css}}}</style>
</head>
{{!-- TODO support references + languages, show publications, etc. --}}
<body>
<div id="wrapper">
<div id="resume">
{{> basics}}
{{> summary}}
{{> work}}
{{> volunteer}}
{{> projects}}
{{> education}}
{{> publications}}
{{> awards}}
{{> skills}}
{{> interests}}
</div>
</div>
</body>
</html>