-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (71 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
78 lines (71 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quasi Local - Official Site</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<button class="hamburger" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu">
<li><a href="#header">Home</a></li>
<li><a href="#upcoming-shows">Shows</a></li>
<li><a href="#band">About</a></li>
<li><a href="#guest-artists">Guest Artists</a></li>
<li><a href="#our-poetry">Poetry</a></li>
<li><a href="#gallery">Pics or it didn't happen</a></li>
</ul>
</nav>
<section id="header">
<div class="header-image">
<!-- Header image will be added dynamically via JS -->
<h1>Quasi Local</h1>
</div>
</section>
<section id="upcoming-shows">
<h2>Upcoming Shows</h2>
<ul id="gigs-list">
<!-- Gigs will be added dynamically via JS -->
</ul>
</section>
<section id="band">
<h2>The Band</h2>
<div class="bio-container">
<!-- Bios will be added dynamically via JS -->
</div>
</section>
<section id="guest-artists">
<h2>Guest Artists</h2>
<div class="bio-container">
<!-- Guest bios will be added dynamically via JS -->
</div>
</section>
<section id="our-poetry">
<h2>Our Poetry</h2>
<div id="poems-container">
<!-- Poems will be added dynamically via JS -->
</div>
</section>
<section id="gallery">
<!-- <h2>Gallery</h2> -->
<div class="swiper gallery-swiper">
<div class="swiper-wrapper">
<!-- Slides will be added dynamically via JS -->
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>