-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
233 lines (208 loc) · 10.8 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<html class="dark" style="color-scheme: dark;">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Dzubayyan Ahmad's Resume">
<meta name="twitter:description" content="Resume of Dzubayyan Ahmad">
<meta name="twitter:image" content="https://masdzub.com/assets/masdzub.jpg">
<meta property="og:title" content="Dzubayyan Ahmad's Resume">
<meta property="og:description" content="Resume of Dzubayyan Ahmad">
<meta property="og:image" content="https://masdzub.com/assets/masdzub.jpg">
<meta property="og:url" content="https://masdzub.com/">
<meta name="description" content="Resume of Dzubayyan Ahmad">
<meta name="keywords" content="resume, technical support, specialist, Dzubayyan Ahmad, skills, experiences, education">
<meta name="author" content="Dzubayyan Ahmad">
<meta name="theme-color" content="#1a202c">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="./assets/styles.css">
<!-- Add Vue.js from CDN -->
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js"></script>
<title>Dzubayyan Ahmad's Resume</title>
<link rel="icon" href="https://www.gravatar.com/avatar/509d3b6019d078eb39f42d51e7024abc?s=50" >
<link rel="manifest" href="/manifest.json">
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/service-worker.js');
}
window.addEventListener('load', function () {
// Hide the preloader when the page is fully loaded
const preloader = document.querySelector('.preloader');
preloader.style.display = 'none';
});
</script>
</head>
<body class="dark:ring-offset-gray-900">
<!-- Add the preloader HTML -->
<div class="preloader">
<div class="loader"></div>
</div>
<div class="container mx-auto p-4 subpixel-antialiased">
<button class="toggle-button" id="theme-toggle">
<i class="far fa-moon"></i>
</button>
<main class="mb-12">
<div id="app">
<!-- Content -->
<div class="section mt-2">
<div class="flex items-center justify-center">
<div class="m-2 text-right">
<h1 class="text-2xl md:text-3xl font-extrabold tracking-tight">{{ fullName }}</h1>
<h2 class="text-xs uppercase font-bold text-green-500">{{ jobTitle }}</h2>
<div class="mt-2 text-xs text-gray-500 md:hidden">
<div>{{ email }}</div>
<div class="tabular-nums">{{ phoneNumber }}</div>
<div><a :href="website" target="_blank">{{ website }}</a></div>
</div>
</div>
<div class="relative flex my-2 mx-4">
<a class="relative z-10" :href="website" target="_blank">
<img class="w-20 h-20 md:w-16 md:h-16 rounded-full ring-4 ring-green-400 ring-offset-2 dark:ring-offset-gray-900" :src="gravatarURL" alt="Profile Image">
</a>
<div class="absolute inline-flex w-20 h-20 md:w-16 md:h-16 rounded-full ring-8 ring-green-400 animate-ping opacity-20"></div>
</div>
<div class="ml-2 mb-2 md:mb-0 text-xs text-gray-500 hidden md:block">
<div>{{ email }}</div>
<div class="tabular-nums">{{ phoneNumber }}</div>
<div><a :href="website" target="_blank">{{ website }}</a></div>
</div>
</div>
<div class="text-sm text-center italic text-gray-400 dark:text-gray-600 mt-2">{{ description }}</div>
</div>
<div class="section">
<h2 class="text-2xl font-light mb-4 flex">
<span class="mr-2 mt-1 text-gray-400">
<span class="mr-2 mt-1 text-gray-400">
<i class="fa-solid fa-terminal fa-beat fa-xs"></i>
</span>
</span>
<span class="border-b-4 border-green-400 pb-1">Skills</span>
</h2>
<div class="md:flex justify-between pl-4">
<!-- Vue will render skills here -->
<div v-for="(skills, category) in skillsData" :key="category" class="md:w-1/3 px-4 mb-4 md:mb-0">
<h3 class="text-xs font-semibold uppercase mb-1">{{ category }}</h3>
<span v-for="skill in skills" :key="skill" class="inline-flex mr-2 text-xs font-semibold text-opacity-70 text-black border px-1 rounded border-purple-100 bg-purple-50 dark:border-gray-900 dark:bg-gray-600">{{ skill }}</span>
</div>
</div>
</div>
<div class="section">
<h2 class="text-2xl font-light mb-4 flex">
<span class="mr-2 mt-1 text-gray-400">
<i class="fa-solid fa-flask fa-beat fa-xs"></i>
</span>
<span class="border-b-4 border-green-400 pb-1">Experiences</span>
</h2>
<div class="pl-8">
<!-- Experiences will be rendered here -->
<div v-for="(experience, index) in experiences" :key="index" class="mb-4 pl-4 border-l-4 border-green-100 dark:border-green-600">
<div class="tracking-tight flex items-baseline justify-between">
<div>
<span class="font-extrabold mr-1">{{ experience.title }}</span>
<small class="text-gray-500 font-medium italic">
<a :href="experience.companyLink" target="_blank">{{ experience.company }}</a>
</small>
</div>
<span class="text-xs text-gray-400 font-mono md:w-auto w-12 text-center ml-2">
<span class="block md:inline">{{ experience.startDate }}</span>
<span class="px-1 hidden md:inline">-</span>
<span>{{ experience.endDate === 'Present' ? 'Present' : experience.endDate }}</span>
</span>
</div>
<!-- New fields for Employment Status and Work Status -->
<div class="text-xs mt-2 text-gray-500 dark:text-gray-400">
<span><strong>Employment Status:</strong> {{ experience.employmentStatus }}</span><br>
<span><strong>Work Status:</strong> {{ experience.workStatus }}</span>
</div>
<div class="text-sm mt-1 text-gray-400 dark:text-gray-600 w-3/4">
<span><strong>As {{ experience.title }}, my responsibilities include</strong></span><br>
<!-- Render description as an unordered list -->
<ul class="custom-list">
<li v-for="(item, i) in experience.descriptionItems" :key="i">{{ item }}</li>
</ul>
</div>
</div>
</div>
<div class="section">
<h2 class="text-2xl font-light mb-4 flex">
<span class="mr-2 mt-1 text-gray-400">
<i class="fa-solid fa-certificate fa-beat fa-xs"></i>
</span>
<span class="border-b-4 border-green-400 pb-1">Certifications</span>
</h2>
<div class="pl-8">
<!-- Certification items -->
<div v-for="(certification, index) in certifications" :key="index" class="mb-4 pl-4 border-l-4 border-green-100 dark:border-green-600">
<div class="tracking-tight flex items-baseline justify-between">
<div>
<span class="font-extrabold mr-1">{{ certification.title }}</span>
<small class="text-gray-500 font-medium italic">
@
<a :href="certification.validationLink" target="_blank" class="underline">Validation Link</a>
</small>
</div>
<span class="text-xs text-gray-400 font-mono md:w-auto w-12 text-center ml-2">
<span class="block md:inline">{{ certification.startDate }}</span>
<span class="px-1 hidden md:inline">-</span>
<span>{{ certification.endDate === 'Now' ? 'Now' : certification.endDate }}</span>
</span>
</div>
<p class="text-sm mt-1 text-gray-400 dark:text-gray-600 w-3/4">{{ certification.description }}</p>
</div>
</div>
</div>
<div class="section">
<h2 class="text-2xl font-light mb-4 flex">
<span class="mr-2 mt-1 text-gray-400">
<i class="fa-solid fa-graduation-cap fa-beat fa-xs"></i>
</span>
<span class="border-b-4 border-green-400 pb-1">Education</span>
</h2>
<div class="pl-8">
<!-- Education items -->
<div v-for="(education, index) in educations" :key="index" class="mb-4 pl-4 border-l-4 border-green-100 dark:border-green-600">
<div class="tracking-tight flex items-baseline justify-between">
<div>
<span class="font-extrabold mr-1">{{ education.field }}</span>
<small class="text-gray-500 font-medium italic">@ {{ education.institution }}</small>
</div>
<span class="text-xs text-gray-400 font-mono md:w-auto w-12 text-center ml-2">
<span class="block md:inline">{{ education.startDate }}</span>
<span class="px-1 hidden md:inline">-</span>
<span>{{ education.endDate }}</span>
</span>
</div>
</div>
</div>
</div>
<div class="section">
<h2 class="text-2xl font-light mb-4 flex">
<span class="mr-2 mt-1 text-gray-400">
<i class="fa-solid fa-headset fa-beat fa-xs"></i>
</span>
<span class="border-b-4 border-green-400 pb-1">Interests</span>
</h2>
<div class="pl-8 text-sm text-gray-400 dark:text-gray-900">
<span v-for="(interest, index) in interests" :key="index" :class="getInterestClasses(index)">{{ interest }}</span>
</div>
</div>
</div>
<div class="text-center mt-8">
<a href="./assets/CV_Ahmad_Dzubayyan.pdf" target="_blank" class="inline-flex items-center px-4 py-2 bg-green-500 text-white rounded-md hover:bg-green-600 transition duration-300 ease-in-out">
<i class="fas fa-download mr-2"></i>
Download CV
</a>
<button id="printButton" class="inline-flex items-center px-4 py-2 bg-green-500 text-white rounded-md hover:bg-green-600 transition duration-300 ease-in-out">
<i class="fas fa-print mr-2"></i>
Print
</button>
</div>
</main>
</div>
<script src="./assets/data.js"></script>
<script src="./assets/darkmode.js"></script>
<script src="./assets/utility.js"></script>
</body>
</html>