-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetail.php
266 lines (258 loc) · 13.3 KB
/
detail.php
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<?php
$team = [
[
'firstname' => 'Jeffrey',
'lastname' => 'Perdue',
'jobTitle' => 'Software Engineer',
'email' => '[email protected]',
'phone' => '513 462 6478',
'linkedin' => 'https://www.linkedin.com/in/jeffperdue/',
'github' => 'https://github.com/jeffreyperdue',
'website' => 'jeffperdue.com',
'summary' => 'Software Engineering student with a 3.9 GPA at Northern Kentucky University, on track to graduate in May 2026. I thrive at the intersection of teamwork and innovation, with demonstrated leadership and collaborative problem-solving skills. Seeking an internship and/or full-time employment.',
'profileImage' => 'assets/jeff.jpg',
'workExperience' => [
[
'position' => 'Front End Supervisor/Forklift Driver',
'company' => 'Costco Wholesale',
'duration' => '2020 - Present',
'description' => 'Supervised staff of 60+ including assisting in hiring, writing performance reviews, and constructing training and development plans for staff...'
],
[
'position' => 'Wine Director/Sommelier',
'company' => 'Jean-Robert\'s Table',
'duration' => '2015 - 2019',
'description' => 'Managed 150+ bottle wine cellar, including inventory, staff training and pairing for tasting menus...'
],
],
'skills' => [
'Java' => 100,
'React' => 94,
'JavaScript' => 96,
'Node.js' => 92,
'HTML/CSS' => 96
],
'education' => [
[
'degree' => 'BS in Applied Software Engineering',
'institution' => 'Northern Kentucky University',
'year' => '2026'
]
],
'interests' => ['Hiking', 'Cooking']
],
[
'firstname' => 'Brandon',
'lastname' => 'Anthony',
'jobTitle' => 'Help Desk Tier 1',
'email' => '[email protected]',
'phone' => '513 504 1877',
'linkedin' => 'https://www.linkedin.com/in/brandon-j-anthony/',
'github' => 'https://github.com/anthonyb1nku',
'website' => 'brandonanthony.com',
'summary' => 'Current Cybersecurity and Applied Software Engineering student at Northern Kentucky University with a strong attention to detail and great organizational skills seeking an internship in the Greater Cincinnati area. Able to work in-person, remote, or hybrid in the Cincinnati tri-state area.',
'profileImage' => 'assets/brandon.jpg',
'workExperience' => [
[
'position' => 'IT Intern',
'company' => 'Fischer Homes',
'duration' => '2024 - Present',
'description' => 'Configure employee accounts using Active Directory and Miscrosoft 365.'
],
[
'position' => 'Air & Missile Defense Vehicle Commander',
'company' => 'US Army',
'duration' => '2018-2023',
'description' => 'Tested and integrated the new M-SHORAD Stryker into US ARMY operation.'
],
],
'skills' => [
'HTML/CSS' => 95,
'Java' => 92,
'Python' => 85,
'PHP' => 87,
],
'education' => [
[
'degree' => 'BS in CyberSecurity, Applied Software Engineering',
'institution' => 'Northern Kentucky University',
'year' => '2027'
]
],
'interests' => ['Hiking', 'Soccer']
],
[
'firstname' => 'Nick',
'lastname' => 'Miller',
'jobTitle' => 'CyberSecurity Student',
'email' => '[email protected]',
'phone' => '621-3909',
'linkedin' => 'https://www.linkedin.com/in/nickmiller/',
'github' => 'https://github.com/NickM69',
'website' => 'nickmiller.com',
'summary' => 'A student at nku in my 2nd year studying for a degree in cybersecurity and a minor in computer science.',
'profileImage' => 'assets/nick.jpg',
'workExperience' => [
[
'position' => 'Work study program',
'company' => 'SECC',
'duration' => '2021 - 2022',
'description' => 'Took inventory and worked under acting IT director at SECC taking inventory and helping out.'
],
],
'skills' => [
'Python' => 98,
'Java' => 95,
'HTML' => 90,
'PHP' => 85
],
'education' => [
[
'degree' => 'BS in CyberSecurity',
'institution' => 'NKU',
'year' => '2026'
]
],
'interests' => ['Gaming', 'Swimming']
]
];
$i = $_GET['index'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?= $team[$i]['firstname'] ?>'s Resume</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?= $team[$i]['firstname'] ?>'s profile">
<meta name="author" content="<?= $team[$i]['firstname'] ?>">
<link rel="shortcut icon" href="favicon.ico">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900" rel="stylesheet">
<!-- FontAwesome JS-->
<script defer src="assets/fontawesome/js/all.min.js"></script>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/pillar-1.css">
<style>
.profile-image {
max-width: 150px;
max-height: 150px;
width: auto;
height: auto;
}
</style>
</head>
<body>
<article class="resume-wrapper text-center position-relative">
<div class="mb-4"><a href="index.php" class="btn btn-primary">Back to index</a></div>
<div class="resume-wrapper-inner mx-auto text-start bg-white shadow-lg">
<header class="resume-header pt-4 pt-md-0">
<div class="row">
<div class="col-block col-md-auto resume-picture-holder text-center text-md-start">
<img class="picture profile-image" src="<?= $team[$i]['profileImage'] ?>" alt="Profile Image">
</div>
<div class="col">
<div class="row p-4 justify-content-center justify-content-md-between">
<div class="primary-info col-auto">
<h1 class="name mt-0 mb-1 text-white text-uppercase"><?= $team[$i]['firstname'] . ' ' . $team[$i]['lastname'] ?></h1>
<div class="title mb-3"><?= $team[$i]['jobTitle'] ?></div>
<ul class="list-unstyled">
<li class="mb-2"><a class="text-link" href="mailto:<?= $team[$i]['email'] ?>"><i class="far fa-envelope fa-fw me-2" data-fa-transform="grow-3"></i><?= $team[$i]['email'] ?></a></li>
<li><a class="text-link" href="tel:<?= $team[$i]['phone'] ?>"><i class="fas fa-mobile-alt fa-fw me-2" data-fa-transform="grow-6"></i><?= $team[$i]['phone'] ?></a></li>
</ul>
</div>
<div class="secondary-info col-auto mt-2">
<ul class="resume-social list-unstyled">
<li class="mb-3"><a class="text-link" href="<?= $team[$i]['linkedin'] ?>"><span class="fa-container text-center me-2"><i class="fab fa-linkedin-in fa-fw"></i></span><?= $team[$i]['linkedin'] ?></a></li>
<li class="mb-3"><a class="text-link" href="<?= $team[$i]['github'] ?>"><span class="fa-container text-center me-2"><i class="fab fa-github-alt fa-fw"></i></span><?= $team[$i]['github'] ?></a></li>
<li><a class="text-link" href="<?= $team[$i]['website'] ?>"><span class="fa-container text-center me-2"><i class="fas fa-globe"></i></span><?= $team[$i]['website'] ?></a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="resume-body p-5">
<!-- Summary Section -->
<section class="resume-section summary-section mb-5">
<h2 class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3">Summary</h2>
<div class="resume-section-content">
<p class="mb-0"><?= $team[$i]['summary'] ?></p>
</div>
</section>
<!-- Work Experience Section -->
<section class="resume-section experience-section mb-5">
<h2 class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3">Work Experience</h2>
<div class="resume-section-content">
<div class="resume-timeline position-relative">
<?php foreach ($team[$i]['workExperience'] as $experience): ?>
<article class="resume-timeline-item position-relative pb-5">
<div class="resume-timeline-item-header mb-2">
<div class="d-flex flex-column flex-md-row">
<h3 class="resume-position-title font-weight-bold mb-1"><?= $experience['position'] ?></h3>
<div class="resume-company-name ms-auto"><?= $experience['company'] ?></div>
</div>
<div class="resume-position-time"><?= $experience['duration'] ?></div>
</div>
<div class="resume-timeline-item-desc">
<p><?= $experience['description'] ?></p>
</div>
</article>
<?php endforeach; ?>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="resume-section skills-section mb-5">
<h2 class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3">Skills & Tools</h2>
<div class="resume-section-content">
<div class="resume-skill-item">
<ul class="list-unstyled mb-4">
<?php foreach ($team[$i]['skills'] as $skill => $proficiency): ?>
<li class="mb-2">
<div class="resume-skill-name"><?= $skill ?></div>
<div class="progress resume-progress">
<div class="progress-bar theme-progress-bar-dark" role="progressbar" style="width: <?= $proficiency ?>%" aria-valuenow="<?= $proficiency ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</section>
<!-- Education Section -->
<section class="resume-section education-section mb-5">
<h2 class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3">Education</h2>
<div class="resume-section-content">
<ul class="list-unstyled">
<?php foreach ($team[$i]['education'] as $education): ?>
<li class="mb-2">
<div class="resume-degree font-weight-bold"><?= $education['degree'] ?></div>
<div class="resume-degree-org"><?= $education['institution'] ?></div>
<div class="resume-degree-time"><?= $education['year'] ?></div>
</li>
<?php endforeach; ?>
</ul>
</div>
</section>
<!-- Interests Section -->
<section class="resume-section interests-section mb-5">
<h2 class="resume-section-title text-uppercase font-weight-bold pb-3 mb-3">Interests</h2>
<div class="resume-section-content">
<ul class="list-unstyled">
<?php foreach ($team[$i]['interests'] as $interest): ?>
<li class="mb-1"><?= $interest ?></li>
<?php endforeach; ?>
</ul>
</div>
</section>
</div>
</div>
</article>
<footer class="footer text-center pt-2 pb-5">
<small class="copyright">Designed with <span class="sr-only">love</span><i class="fas fa-heart"></i> by Brandon, Jeff, & Nick</small>
</footer>
</body>
</html>