-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
315 lines (300 loc) · 14.1 KB
/
Copy pathgallery.html
File metadata and controls
315 lines (300 loc) · 14.1 KB
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Photo Gallery - Morgan Rogers' work and experiences">
<title>Gallery | Morgan Rogers</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<div class="logo">
<a href="index.html">Morgan Rogers</a>
</div>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu" id="navMenu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="gallery.html" class="active">Gallery</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Page Header -->
<header class="page-header">
<div class="container">
<h1>Gallery</h1>
<p>A visual journey through my work and experiences</p>
</div>
</header>
<!-- Gallery Controls -->
<section class="gallery-controls">
<div class="container">
<div class="gallery-filter">
<button class="gallery-filter-btn active" data-filter="all">All Images</button>
<button class="gallery-filter-btn" data-filter="work">Work</button>
<button class="gallery-filter-btn" data-filter="projects">Projects</button>
<button class="gallery-filter-btn" data-filter="technology">Technology</button>
</div>
<div class="gallery-view-toggle">
<button class="view-btn active" data-view="grid" aria-label="Grid view">
<span>⊞</span>
</button>
<button class="view-btn" data-view="list" aria-label="List view">
<span>☰</span>
</button>
</div>
</div>
</section>
<!-- Gallery Grid -->
<section class="gallery-section">
<div class="container">
<div class="gallery-grid" id="galleryGrid">
<!-- Gallery Item 1 -->
<div class="gallery-item" data-category="work tech">
<div class="gallery-image">
<img src="images/home-lab.jpg" alt="Technology workspace setup" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Workspace Setup</h3>
<p>Modern development environment</p>
<button class="view-full-btn" data-image="images/home-lab.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Development Workspace</h4>
<p>My daily setup for coding and system administration</p>
</div>
</div>
<!-- Gallery Item 2 -->
<div class="gallery-item" data-category="projects tech">
<div class="gallery-image">
<img src="images/net-tools.jpg" alt="Technical project in progress" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Project Development</h3>
<p>Building innovative solutions</p>
<button class="view-full-btn" data-image="images/net-tools.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Technical Project</h4>
<p>Working on security analysis tools</p>
</div>
</div>
<!-- Gallery Item 3 -->
<div class="gallery-item" data-category="tech projects">
<div class="gallery-image">
<img src="images/fresh-market.jpg" alt="Web development project" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Web Development</h3>
<p>Creating responsive web applications</p>
<button class="view-full-btn" data-image="images/fresh-market.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Web Application</h4>
<p>Responsive design implementation using CSS Grid</p>
</div>
</div>
<!-- Gallery Item 4 -->
<div class="gallery-item" data-category="work tech">
<div class="gallery-image">
<img src="images/ad-man.jpg" alt="System infrastructure" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Infrastructure</h3>
<p>Enterprise system architecture</p>
<button class="view-full-btn" data-image="images/ad-man.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>System Infrastructure</h4>
<p>Managing enterprise-level network systems</p>
</div>
</div>
<!-- Gallery Item 5 -->
<div class="gallery-item" data-category="projects tech">
<div class="gallery-image">
<img src="images/sec-lab.jpg" alt="Security lab environment" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Security Lab</h3>
<p>Cybersecurity testing environment</p>
<button class="view-full-btn" data-image="images/sec-lab.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Home Security Lab</h4>
<p>Virtualized environment for security research</p>
</div>
</div>
<!-- Gallery Item 6 (Additional context) -->
<div class="gallery-item" data-category="work">
<div class="gallery-image">
<img src="images/github.jpg" alt="Collaborative work environment" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Collaboration</h3>
<p>Team-based problem solving</p>
<button class="view-full-btn" data-image="images/github.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Team Collaboration</h4>
<p>Working with IT teams on enterprise solutions</p>
</div>
</div>
<!-- Gallery Item 7 -->
<div class="gallery-item" data-category="projects">
<div class="gallery-image">
<img src="images/sec-an.jpg" alt="Learning and development" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Continuous Learning</h3>
<p>Expanding technical knowledge</p>
<button class="view-full-btn" data-image="images/sec-an.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Professional Development</h4>
<p>Hack the Box Academy training sessions</p>
</div>
</div>
<!-- Gallery Item 8 -->
<div class="gallery-item" data-category="tech">
<div class="gallery-image">
<img src="images/web-dev.jpg" alt="Modern technology stack" loading="lazy">
<div class="gallery-overlay">
<div class="gallery-info">
<h3>Tech Stack</h3>
<p>Modern development tools</p>
<button class="view-full-btn" data-image="images/github.jpg">
View Full Size
</button>
</div>
</div>
</div>
<div class="gallery-caption">
<h4>Technology Stack</h4>
<p>React, TypeScript, and modern web frameworks</p>
</div>
</div>
</div>
</div>
</section>
<!-- Lightbox Modal -->
<div id="lightbox" class="lightbox" style="display: none;">
<div class="lightbox-content">
<button class="lightbox-close" id="lightboxClose" aria-label="Close lightbox">×</button>
<button class="lightbox-prev" id="lightboxPrev" aria-label="Previous image">‹</button>
<button class="lightbox-next" id="lightboxNext" aria-label="Next image">›</button>
<img src="" alt="Full size gallery image" id="lightboxImage">
<div class="lightbox-caption" id="lightboxCaption"></div>
</div>
</div>
<!-- Gallery Stats Section -->
<section class="gallery-stats">
<div class="container">
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number" data-count="8">0</div>
<div class="stat-label">Images</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="4">0</div>
<div class="stat-label">Categories</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="10">0</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="5">0</div>
<div class="stat-label">Technologies</div>
</div>
</div>
</div>
</section>
<!-- Contact CTA Section -->
<section class="cta-section">
<div class="container">
<h2>Let's Work Together</h2>
<p>I'm always interested in hearing about new projects and opportunities.</p>
<a href="contact.html" class="btn btn-light">Get In Touch</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Morgan Rogers</h3>
<p>Software Developer</p>
<p>Boston University - MS in CIS</p>
<p>WGU - BS/MS in SWE</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Connect</h4>
<ul class="social-links">
<li><a href="https://github.com/PromptNebula05" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/morgan-rogers-0042972b9/" target ="_blank" rel="noopener">LinkedIn</a></li>
<li><a href="mailto:mrgn.rogers@gmail.com">Email</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Location</h4>
<p>Cornish, Maine 04020</p>
<p>(207) 823-0747</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Morgan Rogers. All rights reserved.</p>
<p class="footer-note">Built with HTML5, CSS3, JavaScript & React</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>