-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (73 loc) · 2.6 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./main.css" rel="stylesheet">
<title>{{basics.name}} - Resume</title>
<script src="/fontawesome-free-6.1.2-web/js/fontawesome.min.js"></script>
<script src="/fontawesome-free-6.1.2-web/js/brands.min.js"></script>
<script src="/fontawesome-free-6.1.2-web/js/solid.min.js"></script>
</head>
<body class="font-text font-light text-f-grey text-sm tracking-wide">
<div
id="left-runner"
class="fixed -z-10 w-0 h-full bg-f-blue"
>
</div>
<main class="py-10 print:py-0 px-10 h-full max-w-[769px] mx-auto">
<section class="pb-8">
<div class="space-y-4">
<h1 class="text-f-blue font-title text-6xl">{{basics.name}}</h1>
<div class="flex items-end justify-between gap-x-4">
<h2 class="text-4xl">{{basics.label}}</h2>
<span class="hidden print:block">
{{> link url=basics.url text="(updated at resume.fairewinds.ca)" }}
</span>
<span class="print:hidden block shrink-0">
{{> link url="/resume.pdf" text="(PDF here)"}}
</span>
</div>
</div>
</section>
<div class="grid gap-x-8 gap-y-4 grid-cols-1 sm:grid-cols-2 md:grid-cols-3 print:grid-cols-3 pb-12">
<div class="flex items-center space-x-2 break-all">
<i class="fa-solid fa-earth-americas text-f-blue mr-2"></i>
{{> link url=basics.url text=basics.url }}
</div>
<div class="flex items-center space-x-2 break-all">
<i class="fa-solid fa-envelope text-f-blue mr-2"></i>
{{> link url=(emailLink basics.email) text=basics.email }}
</div>
{{#each basics.profiles}}
<div class="flex items-center space-x-2">
<i class="fa-brands fa-{{slugify this.network}} text-f-blue mr-2"></i>
<span>
{{this.network}}:
{{> link url=this.url text=(socialHandle this.username) }}
</span>
</div>
{{/each}}
</div>
<section class="grid grid-cols-1 sm:grid-cols-section-item print:grid-cols-section-item gap-4 sm:gap-8 print:gap-8 pb-16">
<span class="text-xl font-normal uppercase">Summary</span>
<p>{{basics.summary}}</p>
<span class="text-xl font-normal uppercase">Skills</span>
<ul class="grid grid-cols-3 gap-4">
{{#each skills}}
<li>{{this.name}}</li>
{{/each}}
</ul>
<span class="text-xl font-normal uppercase">Tech Stack</span>
<div class="grid gap-4 grid-cols-3">
{{#each techStack}}
<p>{{this.name}}</p>
{{/each}}
</div>
</section>
{{> workExperience }}
{{> education }}
{{> skills }}
</main>
</body>
</html>