-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex_eng.html
More file actions
515 lines (484 loc) · 32.4 KB
/
index_eng.html
File metadata and controls
515 lines (484 loc) · 32.4 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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<title>Base48 - Brno hackerspace</title>
<meta name="description" content="Base48 is a Brno hackerspace and community workshop. We offer space, equipment and community for your electronics, 3D printing, DIY and other projects. Learn more about us, our focus and membership.">
<meta name="keywords" content="hackerspace, makerspace, South Moravian region, Brno, Base48, DIY, 3D printing, electronics, workshop, community, projects, membership">
<script>
(function() {
try {
const savedTheme = localStorage.getItem('theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (savedTheme === 'dark' || (savedTheme === null && prefersDark)) {
document.documentElement.setAttribute('data-theme', 'dark');
} else {
document.documentElement.setAttribute('data-theme', 'light');
}
} catch (e) {
// In case of any error, default to light theme
document.documentElement.setAttribute('data-theme', 'light');
}
})();
</script>
<link rel="stylesheet" href="/vendor/fa/all.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/lightbox.css">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="/">
<meta property="og:title" content="Base48 - Brno hackerspace">
<meta property="og:description" content="Base48 is a Brno hackerspace and community workshop. We offer space, equipment and community for your electronics, 3D printing, DIY and other projects. Learn more about us, our focus and membership.">
<meta property="og:image" content="/img/og/base48_og_01.webp">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="/">
<meta property="twitter:title" content="Base48 - Brno hackerspace">
<meta property="twitter:description" content="Base48 is a Brno hackerspace and community workshop. We offer space, equipment and community for your electronics, 3D printing, DIY and other projects. Learn more about us, our focus and membership.">
<meta property="twitter:image" content="/img/og/base48_og_01.webp">
<!-- Canonical URL -->
<link rel="canonical" href="https://base48.cz/index_eng.html">
<!-- Language alternatives -->
<link rel="alternate" hreflang="cs" href="https://base48.cz/">
<link rel="alternate" hreflang="en" href="https://base48.cz/index_eng.html">
</head>
<body>
<header>
<div class="header-left">
<div class="logo-container">
<a href="/">
<img src="/img/logo/logo.svg" alt="Base48 Logo" class="logo">
</a>
</div>
<!-- Hide H1 visually but keep for SEO/Accessibility -->
<h1 style="position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;">
Base48 - Brno hackerspace</h1>
</div>
<button class="hamburger-menu" aria-label="Toggle menu" aria-expanded="false" aria-controls="main-nav">
<span class="hamburger-icon"></span>
</button>
<div class="nav-wrapper" id="main-nav">
<nav>
<ul>
<li><a href="/#o-nas">About us</a></li>
<li><a href="/#zamereni">Focus</a></li>
<li><a href="/#clenstvi">Membership</a></li>
<li><a href="/#kontakt">Contact</a></li>
<span class="hide-on-mobile hide-on-tablet" aria-hidden="true">|</span>
<li class="small hide-on-tablet"><a href="https://wiki.base48.cz/" target="_blank" rel="noopener">Wiki <i class="fas fa-external-link-alt"></i></a></li>
<li class="small"><a href="https://nextcloud.at.base48.cz/apps/calendar/embed/oM82tg3RJDLDyZbz" target="_blank" rel="noopener">Calendar <i class="fas fa-external-link-alt"></i></a></li>
<li class="small hide-on-tablet"><a href="https://members.base48.cz/" target="_blank" rel="noopener">Member Portal <i class="fas fa-external-link-alt"></i></a></li>
<span class="hide-on-mobile hide-on-tablet" aria-hidden="true">|</span>
<li class="small"><a href="/">Czech</a></li>
</ul>
</nav>
</div>
</header>
<!-- Satellite sprite container -->
<div class="satellite-container" aria-hidden="true">
<img src="/img/satellite_pixel_1.webp" alt="" class="satellite-sprite">
<div class="satellite-popup" id="satellite-popup">
<span class="close-popup">×</span>
<h3>Why number 48?</h3>
<p>Base48 was created in 2010, at that time on Stork Street with the landmark number 48.
And with base64, we'd have a problem with internet search engines.</p>
</div>
</div>
<div class="content-wrapper">
<main class="sections">
<section id="o-nas" class="about-section">
<h2>Brno hackerspace Base48</h2>
<div class="column">
<div class="frame-grid" id="intro-frames" style="order: 2;">
<a href="#" class="frame-container portrait glow" data-gallery="space">
<img src="/img/frame/43_frame_5_lcd_panel.webp" alt="CRT Frame" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines">
<span class="frame-title">Space </span>
<img src="/img/screen/43_base48_prostor.webp" alt="Base48 Prostor" class="frame-content-image">
</div>
</a>
<a href="#" class="frame-container portrait glow" data-gallery="chill">
<img src="/img/frame/43_frame_2_crt_vintage.webp" alt="CRT Frame" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines">
<span class="frame-title">Chill</span>
<img src="/img/screen/43_zahradka_grilovacka.webp" alt="Base48 Chill" class="frame-content-image">
</div>
</a>
</div>
<!-- Hidden gallery container - Space -->
<div class="gallery-container" style="display: none;">
<div class="gallery" data-gallery-id="space">
<img src="/img/gallery/space/base48_space_1.webp" loading="lazy"
alt="Hackerspace Base48 in the evening with a few working tables and computer chairs. The tables are suspended above the tables, serving as LED lights. In the background, you can see the police with equipment and tools.">
<img src="/img/gallery/space/base48_space_2.webp" loading="lazy"
alt="Working table in the hackerspace with various electronic devices, including an oscilloscope, power supply, and soldering iron. The table also has pliers and a microscope with a display showing a detailed view of an ESP32 microchip. The table is well-lit with a fluorescent light above it.">
<img src="/img/gallery/space/base48_space_3.webp" loading="lazy"
alt="Working space with several tables equipped with computers and monitors, chairs and lamps. In the background, you can see another working table with electronics, tools and measuring instruments.">
<img src="/img/gallery/space/base48_base_4.webp" loading="lazy"
alt="Deep lore, core memories. A table with a colorful abstract motif in shades of blue and beige. There are two monitors and tangled cables on the table.">
</div>
</div>
<!-- Hidden gallery container - Chill -->
<div class="gallery-container" style="display: none;">
<div class="gallery" data-gallery-id="chill">
<img src="/img/gallery/chill/base48_chill_2.webp" loading="lazy"
alt="On the table is prepared food for informal dining. There are bread, salad, strawberries and cheese slices. On the table are also bottles with ketchup and mustard. The table is also equipped with a grill.">
<img src="/img/gallery/chill/base48_chill_3.webp" loading="lazy"
alt="A table with a basket filled with fresh vegetables, including cucumbers, peppers, tomatoes and salad. Next to the table is a box with vegan pizza rolls. In the background, you can see several stacked plates and glasses with utensils.">
<img src="/img/gallery/chill/base48_chill_1.webp" loading="lazy"
alt="A brick outdoor grill with a metal grid on top, placed in a shady spot against the wall. The grill is on a metal construction with a sheet metal and around it grow green plants.">
<img src="/img/gallery/chill/base48_chill_4.webp" loading="lazy"
alt="A wooden boundary prepared for lighting on an outdoor grill from brick and metal base. The flames and smoke rise upwards, while in the background you can see a concrete wall and green plants.">
</div>
</div>
<div class="column">
<p>Base48 is a community-run physical space - <strong>hackerspace</strong>,
where people with different interests come together,
collaborate on projects and share knowledge and experience.</p>
<div class="container" style="flex-direction: column;">
<div class="container" style="display: flex; flex-direction: row; justify-content: space-evenly; align-items: flex-start;">
<ul class="hero-list" style="margin-top: 0;">
<li>Common interests group</li>
<li>Meetings and lectures place</li>
<li>Equipped laboratory and workshop</li>
<li>Club and third place</li>
</ul>
<div class="button-container" style="display: flex; flex-direction: column;">
<a href="#zamereni" class="button">
<i class="fas fa-sun"></i>
<span class="button-inner">Base48 Focus</span>
</a>
<a href="#clenstvi" class="button">
<i class="fas fa-user"></i>
<span class="button-inner">Membership Benefits</span>
</a>
<a href="#kontakt" class="button">
<i class="fas fa-map-marker-alt"></i>
<span class="button-inner">Contact and Map</span>
</a>
</div>
</div>
</div>
</div>
<div class="calendar-embed" style="order: 3;">
<h3>Upcoming events</h3>
<div id="calendar-events">
<p class="calendar-loading">Loading calendar...</p>
</div>
</div>
</section>
<section id="kontakt">
<h2>Addresses, contacts and links</h2>
<div class="column">
<div class="contact-info-grid">
<div class="contact-card location">
<div class="transport-info">
<h3>How to approach by public transport</h3>
<div class="transport-grid" style="font-size: .9rem;">
<div class="transport-item">
<i class="fas fa-map-marker-alt"></i>
<span>Husitská, Slovanské náměstí</span>
</div>
<div class="transport-item">
<i class="fas fa-train"></i>
<span>Tram: 1 and 6</span>
</div>
<div class="transport-item">
<i class="fas fa-bus"></i>
<span>Buses: 53, 67, 44, 84</span>
</div>
<div class="transport-item">
<i class="fas fa-bus"></i>
<span>Trolleybuses: 30 and 32</span>
</div>
</div>
</div>
<div class="addresses" style="display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; padding-top: 20px;">
<h3>How to get to Base48 <span id="base-status" class="base-status" style="display: none;" role="status" aria-live="polite"></span></h3>
<div class="address-block" style="position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 20px;">
<i class="fas fa-door-open" style="position: absolute; top: 20px; right: 20px; font-size: 2rem; color: var(--primary-color);"></i>
<address>
<strong>742/82 Palackého třída</strong><br>
(passage from Palackého třída)
</address>
<p style="margin-top: 10px;" class="note light">
We are located on a slight hill in the courtyard between Palackého třída and Mojmírovo
square. K Base48
can be reached from both sides.
Passing from Palackého třída, from the top, (next to Amici, on the right) is faster,
but the passage is usually closed, if that happens,
try texting someone in the hackerspace to come open it.
</p>
</div>
<div class="address-block" style="position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 20px;">
<i class="fas fa-map-marker-alt address-icon"></i>
<address>
<strong>Mojmírovo náměstí 17</strong><br>
Brno, Czech Republic
</address>
<p style="margin-top: 10px;" class="note light">
From Mojmírovo náměstí, from the bottom, the way is always clear.
You need to go through the passage next to the music club Fičák towards the top.
You can recognize Base48 by the big red door and the banner with the logo.
</p>
</div>
</div>
</div>
<div class="contact-card communication">
<div class="buttons">
<h3>Useful links</h3>
<a href="https://mapall.space/heatmap/show.php?id=base48" target="_blank" class="button">
<i class="fas fa-fire"></i>
<span>Open/Occupied - Heatmap</span>
</a>
<a href="https://wiki.base48.cz" target="_blank" class="button">
<i class="fas fa-book"></i>
<span>wiki<span class="hide-on-mobile">.base48.cz</span></span>
</a>
<a href="https://nextcloud.at.base48.cz/apps/calendar/embed/oM82tg3RJDLDyZbz" target="_blank" rel="noopener" class="button">
<i class="fas fa-calendar-alt"></i>
<span>Event calendar</span>
</a>
<a href="https://signal.group/#CjQKIHBQ1JXOJ0momxbQIsaBet-gPgFRq9hUQyvVk-BV785AEhBC8WvwTDodUmPzfBrcfbHN" target="_blank" rel="noopener" class="button">
<i class="fas fa-comments"></i>
<span>Signal - public</span>
</a>
<a href="https://signal.group/#CjQKIFfa1_drdrVA8tzfolFIZVAbCSvg4cUCn5zx-czVGvUsEhDwl_MecwpNt4xC1kIujc49" target="_blank" rel="noopener" class="button">
<i class="fas fa-comments"></i>
<span>Signal - for members</span>
</a>
<a href="https://github.com/base48" target="_blank" rel="noopener" class="button">
<i class="fab fa-github"></i>
<span>Github <span class="hide-on-mobile">base48</span></span>
</a>
<a href="https://www.facebook.com/Base48.cz/" target="_blank" rel="noopener" class="button">
<i class="fab fa-facebook"></i>
<span>Facebook <span class="hide-on-mobile">Base48.cz</span></span>
</a>
<a href="https://www.youtube.com/channel/UCyBFShxrgO1QkRqs7EEM04A" target="_blank" rel="noopener" class="button">
<i class="fab fa-youtube"></i>
<span>Youtube <span class="hide-on-mobile">Base48</span></span>
</a>
<a href="https://lists.base48.cz/" target="_blank" rel="noopener" class="button">
<i class="fas fa-envelope"></i>
<span>Mailing lists <span class="hide-on-mobile">lists.base48.cz</span></span>
</a>
</div>
<div class="map-info" id="map-info">
<h3>Maps</h3>
<div class="buttons">
<a href="https://www.openstreetmap.org/node/11247964718" target="_blank" rel="noopener" class="button">
<i class="fas fa-map"></i>
<span class="button-inner">OpenStreetMap</span>
</a>
<a href="https://mapy.cz/s/bosesamuva" target="_blank" rel="noopener" class="button">
<i class="fas fa-map"></i>
<span class="button-inner">Maps.cz</span>
</a>
<a href="https://www.google.com/maps/dir//Mojm%C3%ADrovo+n%C3%A1m.+17,+612+00+Brno-Kr%C3%A1lovo+Pole/@49.2243066,16.5939131,343m/data=!3m1!1e3!4m8!4m7!1m0!1m5!1m1!1s0x47129440c7cff175:0x746297c25f280f66!2m2!1d16.595491!2d49.2242141?hl=en&entry=ttu&g_ep=EgoyMDI1MDQyMy4wIKXMDSoASAFQAw%3D%3D" target="_blank" rel="noopener" class="button">
<i class="fas fa-map"></i>
<span class="button-inner">Google</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="zamereni">
<h2>Focus</h2>
<div class="column">
<div class="grid-zamereni">
<div class="grid-zamereni-item ">
<div class="info">
<h3>3D printing</h3>
<p>at our 3D printing farm, plastics are flowing. Non-stop. Several different printers
in parallel
in operation. Classic and experimental materials and machines. Available for repairs,
designs, rapid prototyping. We maintain a stock of
of community filament.</p>
<div class="button-container">
<a href="#kontakt" class="button">
<i class="fas fa-print"></i>
<span class="button-inner">I want to print</span>
</a>
</div>
</div>
<div class="frame-container portrait flipped">
<img src="/img/frame/43_frame_6_cctv.webp" alt="CRT Frame" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines">
<span class="frame-title">3D printing </span>
<img src="/img/screen/43_base48_3d_tisk.webp" alt="Placeholder Content" class="frame-content-image">
</div>
</div>
</div>
<div class="grid-zamereni-item">
<div class="info">
<h3>Electro Lab</h3>
<p>Quality light is the basis of our arsenal, we have oscilloscopes, power supplies, among others,
microsolder and hot air. Hundreds of types of common components and common electrical
tools.
</p>
</div>
<div class="frame-container portrait">
<img src="/img/frame/43_frame_4_mcu.webp" alt="CRT Frame" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines">
<span class="frame-title">Elektrolab </span>
<img src="/img/screen/43_elektro_laborator.webp" alt="Placeholder Content" class="frame-content-image">
</div>
</div>
</div>
<div class="grid-zamereni-item">
<div class="info">
<h3>Workshop</h3>
<p>In the workshop you can work with wood and metal. There's also a cycle shop, CNC, a bunch of tools
and even some of that stuff.</p>
</div>
<div class="frame-container portrait">
<img src="/img/frame/43_frame_3_crt_tony.webp" alt="CRT Frame" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines">
<span class="frame-title">Workshop </span>
<img src="/img/screen/43_base48_dilna.webp" alt="Placeholder Content" class="frame-content-image">
</div>
</div>
</div>
<div class="grid-zamereni-item">
<div class="info">
<h3>Your project</h3>
<p>Base48 is a great place to do a wide range of DIY projects and activities. We have
here
everything you need to get started on your new project!</p>
</div>
<div class="frame-container portrait flipped">
<img src="/img/frame/43_frame_5_lcd_panel.webp" alt="CRT Frame" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines">
<span class="frame-title">Your project</span>
<img src="/img/screen/43_otaznik.webp" alt="Placeholder Content" class="frame-content-image">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="clenstvi">
<h2>Benefits of Base48 membership</h2>
<div class="column">
<div class="benefits-grid">
<div class="benefit-item">
<i class="fas fa-key"></i>
<p>You get unlimited access to our physical and virtual infrastructure.</p>
</div>
<div class="benefit-item">
<i class="fas fa-tools"></i>
<p>You can use our equipment and materials for your projects.</p>
</div>
<div class="benefit-item">
<i class="fas fa-archive"></i>
<p>According to our rules, you can store your stuff in the space.</p>
</div>
<div class="benefit-item">
<i class="fas fa-ticket-alt"></i>
<p>Thanks to your membership you often get invitations to interesting events.</p>
</div>
</div>
<ul>
<li>The monthly membership fee is 1000 CZK. For students 600 CZK.</li>
<li>We use the funds to cover operating costs and purchase new
equipment.</li>
<li>In individual cases, the board may decide to reduce or waive
of the contribution.</li>
<li>The general public may visit the hackerspace with virtually no restrictions, preferably
accompanied by existing members.</li>
</ul>
<div class="button-container" style="flex-direction: row; flex-wrap: wrap; gap: 10px; margin: 0 0 var(--padding-large) 0;">
<a href="https://wiki.base48.cz/wiki/Join_us" target="_blank" rel="noopener" class="button">
<i class="fas fa-user"></i>
<span class="button-inner">I want to become a member</span>
</a>
<a href="https://members.base48.cz/" target="_blank" rel="noopener" class="button">
<i class="fas fa-user"></i>
<span class="button-inner">Member Portal</span>
</a>
</div>
</div>
<div>
<h2>Support Base48</h2>
<p>We accept financial and material support (valuable equipment, electrical, 3D printing, workshop,
...). We pride ourselves on neutrality and do not guarantee any consideration or quid pro quo.
For more information about support opportunities, please contact us.</p>
<div class="container" style="flex-direction: row; justify-content: space-between;">
<div style="display: flex; flex-direction: column; justify-content: center;">
<h3>Support methods</h3>
<ul>
<li>Financial donations</li>
<li>Donation of equipment</li>
<li>Volunteering</li>
<li>Sharing knowledge</li>
</ul>
<div class="button-container">
<a href="#kontakt" class="button">
<i class="fas fa-arrow-right"></i>
<span class="button-inner">Support Base48</span>
</a>
</div>
</div>
<div class="frame-container portrait" style="flex: 1;"> <img src="/img/frame/43_frame_1_crt.webp" alt="CRT Frame: 43_frame_1_crt.webp" class="frame-frame" aria-role="presentation">
<div class="frame-content scanlines"> <img src="/img/screen/static.gif" alt="Base48 static" class="frame-content-image"> </div>
</div>
</div>
</div>
<div style="margin-top: var(--padding-large);">
<h2>Partnership with VPSFree.cz</h2>
<a href="https://vpsfree.cz" target="_blank" rel="noopener">
<div class="vpsf-promo">
<div style="text-align: center; ">
<h3><span class="orange">vps</span>Free.cz</h3>
<img class="img-responsive" src="/img/logo/vpsfree_milujeme.png" alt="VPSFree.cz - milujeme servery">
<h3>we love servers</h3>
</div>
</div>
</a>
</div>
</section>
</main>
</div>
<footer>
<p>
Base48, z.s., ID: 22859802, registered: 6 August 2010.
</p>
<p>©left Base48, z.s. Some rights reserved.
</p>
<p>Website prepared by Tomas "Thebys" Biheler.</p>
</footer>
<div class="fixed-action-buttons">
<!-- Scroll to Top -->
<button id="scroll-to-top" class="scroll-to-top fixed-action-button js-only" aria-label="Scroll to top" title="Scroll to top">
<i class="fas fa-arrow-up"></i>
</button>
<!-- Theme Toggle -->
<button class="theme-toggle fixed-action-button js-only" aria-label="Toggle theme" title="Toggle theme">
<i class="fas fa-sun"></i>
</button>
<!-- New Pixel CTA Button -->
<a href="https://wiki.base48.cz/wiki/Join_us" target="_blank" rel="noopener" class="main-cta-button" title="Join us">
<span>Join us</span>
</a>
</div>
<script src="/js/main.js"></script>
<script src="/js/calendar.js"></script>
<!-- Lightbox -->
<div class="lightbox" id="lightbox" role="dialog" aria-modal="true" aria-label="Image gallery">
<div class="lightbox-content">
<button class="lightbox-close" aria-label="Close lightbox">×</button>
<img class="lightbox-image" src="" alt="">
<div class="lightbox-nav">
<button class="lightbox-prev" aria-label="Previous image"><i class="fas fa-chevron-left"></i></button>
<button class="lightbox-next" aria-label="Next image"><i class="fas fa-chevron-right"></i></button>
</div>
<div class="lightbox-caption"></div>
</div>
</div>
</body>
</html>