-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (147 loc) · 5.59 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CV Obi-Wan Kenobi</title>
<link rel="icon" type="image/x-icon" href="favicon.png" />
<script
src="https://kit.fontawesome.com/829a3299e8.js"
crossorigin="anonymous"
></script>
<script defer src="components/infoItem.js"></script>
<script defer src="components/resumeItem.js"></script>
<script defer src="components/resumeAchievementItem.js"></script>
<script defer src="components/skillProgress.js"></script>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="resume">
<div class="resume_left">
<div class="resume_profile">
<img
src="https://web-resume.s3.eu-west-3.amazonaws.com/obi-wan-kenobi.webp"
alt="profile_pic"
/>
</div>
<div class="resume_content">
<div class="resume_item resume_info">
<div class="title">
<h1 class="bold">Obi-Wan Kenobi</h1>
<h4 class="regular">Jedi master</h4>
</div>
<ul>
<info-item>
<i slot="icon" class="fas fa-birthday-cake"></i>
90 yo
</info-item>
<info-item>
<i slot="icon" class="fas fa-map-signs"></i>
Jedi temple, Coruscant
</info-item>
<info-item>
<i slot="icon" class="fas fa-envelope"></i>
<a
href="mailto:[email protected]"
title="[email protected]"
target="_blank"
>
</info-item>
<info-item>
<i slot="icon" class="fab fa-linkedin"></i>
<a
href="https://www.linkedin.com/in/obi-wan-kenobi-574061201/"
title="linkedin.com/in/obi-wan-kenobi-574061201"
target="_blank"
>linkedin.com/in/obi-wan-kenobi-574061201</a
>
</info-item>
</ul>
</div>
<div class="resume_item resume_skills">
<div class="title">
<h2 class="bold">Skills</h2>
</div>
<ul>
<skill-progress value="100">Light saber</skill-progress>
<skill-progress value="90">The Force</skill-progress>
<skill-progress value="90">High ground</skill-progress>
</ul>
</div>
</div>
</div>
<div class="resume_right">
<div class="resume_item resume_about">
<div class="title">
<h2 class="bold">About</h2>
</div>
<p>
I am Jedi Master Obi-Wan Kenobi, a seasoned and wise member of the
esteemed Jedi Order. With a journey spanning from apprentice to
master, I navigated the tumultuous era of the Galactic Republic's
fall and the rise of the Sith. Notably, I confronted my fallen
apprentice, Darth Vader, demonstrating my unyielding commitment to
Jedi principles. My years of vigilance on Tatooine, safeguarding the
next generation, underscore my dedication to our cause. Throughout,
I've imparted guidance and wisdom, leaving an enduring legacy on the
path of the Jedi.
</p>
</div>
<div class="resume_item resume_work">
<div class="title">
<h2 class="bold">Experiences</h2>
</div>
<ul>
<resume-item title="Retirement into Force ghostdom" dates="0 BBY - 34 ABY">
<p slot="description">
Advice giving to Luke Skywalker and Rey, and general
meditation
</p>
</resume-item>
<resume-item title="Desert adventures" dates="19 - 0 ABY">
<p slot="description">
Survivalism and negotiation with Tusken Raiders
</p>
</resume-item>
<resume-item title="General in the Clone Wars" dates="31 - 19 BBY" last>
<p slot="description">
Commanding the 212th Attack Battalion and the 7th Sky Corps
</p>
</resume-item>
</ul>
</div>
<div class="resume_item resume_education">
<div class="title">
<h2 class="bold">Formation</h2>
</div>
<ul>
<resume-item title="Padawan adventures" dates="41 - 32 BBY">
<p slot="description">
Apprenticeship under Qui-Gon Jinn and Jedi Knight
qualification
</p>
</resume-item>
<resume-item title="Temple life and youngling years" dates="56 - 41 BBY" last>
<p slot="description">
Jedi initial training and Jedi Temple studies
</p>
</resume-item>
</ul>
</div>
<div class="resume_item resume_hobby">
<div class="title">
<h2 class="bold">Hobbies</h2>
</div>
<ul>
<li title="Jedi"><i class="fas fa-jedi"></i></li>
<li title="Senate"><i class="fab fa-galactic-senate"></i></li>
<li title="Travels"><i class="fas fa-hiking"></i></li>
<li title="Republic"><i class="fab fa-galactic-republic"></i></li>
<li title="Nature"><i class="fab fa-pagelines"></i></li>
</ul>
</div>
</div>
</div>
</body>
</html>