-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.hbs
48 lines (46 loc) · 1.37 KB
/
template.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
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{resume.basics.name}} - {{resume.basics.label}}</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" />
<style>
:root {
--font-family: {{{vars.fontFamily}}};
--clr-header-bg: {{{vars.clrHeaderBg}}};
--clr-header-text: {{{vars.clrHeaderText}}};
}
</style>
<link rel="stylesheet" href="./assets/index.css" />
</head>
<body>
{{#with resume.basics}}
{{> header}}
{{/with}}
<div class="c-container">
{{#with resume.basics}}
{{> summary}}
{{/with}}
{{!-- dynamically render the section partials. name of partial file and section.key should be the same --}}
{{#if resume._meta.sections}}
{{{renderSections resume._meta.sections}}}
{{else}}
{{> work}}
{{> volunteer}}
{{> education}}
{{> awards}}
{{> publications}}
{{> skills}}
{{> interests}}
{{> languages}}
{{> references}}
{{/if}}
</div>
</body>
</html>