forked from alt-ctrl-dev/jsonresume-theme-printclassy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.hbs
executable file
·32 lines (31 loc) · 953 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
<!doctype html>
<html>
<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>{{#resume.basics}}{{name}}{{/resume.basics}}</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<style>
{{css}}
</style>
<script src= "https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
</head>
<body>
{{> header }}
<div class="main">
{{> basics }}
{{> work }}
{{> skills }}
{{> education }}
{{> awards }}
{{> publications }}
{{> volunteer }}
{{> languages }}
{{> interests }}
{{> references }}
</div>
</body>
</html>