-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
136 lines (120 loc) · 5.09 KB
/
gallery.html
File metadata and controls
136 lines (120 loc) · 5.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Gallery – DB Yale</title>
<!-- Same global CSS -->
<link rel="stylesheet" href="style.css"/>
<script src="https://kit.fontawesome.com/d7310f2557.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- FIXED SIDEBAR -->
<aside class="sidebar">
<div class="sidebar-logo">
<img
src="DB Logo Outline.png"
alt="DB Yale Logo"
class="logo-img"/>
</div>
<nav class="sidebar-nav">
<a href="indext.html">Home</a>
<a href="syllabus.html">Syllabus</a>
<a href="about.html">About</a>
<a href="collaborate.html">Collaborate</a>
<a href="news.html">News + Events</a>
<a href="gallery.html" class="active">Gallery</a>
<a href="meettheboard.html">Meet the Board</a>
<a href="#">Español</a>
</nav>
<div class="sidebar-footer">
<!-- Social Media Links -->
<div class="social-icons">
<a href="https://www.facebook.com/despiertaboricuayale/" target="_blank" class="social-link">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.instagram.com/despiertaboricuayale/" target="_blank" class="social-link">
<i class="fab fa-instagram"></i>
</a>
<a href="mailto:[email protected]" class="social-link">
<i class="fas fa-envelope"></i>
</a>
</div> <!-- Correctly closing social-icons div -->
<div class="license">© 2025 DB Yale</div>
</div>
</aside>
<!-- MAIN CONTAINER -->
<div class="main-container">
<!-- Optional hero or banner -->
<section class="black-hero">
<div class="hero-content">
<h1>DB Yale Photo Gallery</h1>
<p>Browse our events and gatherings—snapshots of our community spirit.</p>
</div>
</section>
<main class="main-content">
<!-- 1) BAD BUNNY ALBUM LISTENING EVENT -->
<section class="gallery-event">
<h2>Bad Bunny New Album Listening</h2>
<p>We jammed out to the latest hits! Check out the vibes from this unforgettable night.</p>
<div class="gallery-grid">
<!-- Replace with your real images -->
<div class="gallery-item">
<img src="images/badbunny1.jpg" alt="Group photo listening to Bad Bunny" />
</div>
<div class="gallery-item">
<img src="images/badbunny2.jpg" alt="People dancing to Bad Bunny album" />
</div>
<div class="gallery-item">
<img src="images/badbunny3.jpg" alt="Snacks and decorations" />
</div>
<!-- Add as many .gallery-item blocks as needed -->
</div>
</section>
<!-- 2) BRAZILIAN MIXER -->
<section class="gallery-event">
<h2>Brazilian Mixer</h2>
<p>A lively night of samba, feijoada, and cross-cultural exchange with our Brazilian friends.</p>
<div class="gallery-grid">
<div class="gallery-item">
<img src="images/brazil1.jpg" alt="Attendees enjoying Brazilian food" />
</div>
<div class="gallery-item">
<img src="images/brazil2.jpg" alt="Samba dancing" />
</div>
<div class="gallery-item">
<img src="images/brazil3.jpg" alt="Decorations in Brazilian colors" />
</div>
</div>
</section>
<!-- 3) WEEKLY CAFECITOS -->
<section class="gallery-event">
<h2>Weekly Cafecitos</h2>
<p>Our ongoing gatherings for coffee, conversation, and community building.</p>
<div class="gallery-grid">
<div class="gallery-item">
<img src="images/cafecito1.jpg" alt="Weekly Cafecito table setup" />
</div>
<div class="gallery-item">
<img src="images/cafecito2.jpg" alt="Friends chatting over coffee" />
</div>
<div class="gallery-item">
<img src="images/cafecito3.jpg" alt="Laughter and good vibes at Cafecitos" />
</div>
<!-- Add more for each week's photos if you like -->
</div>
</section>
<!-- Keep adding sections for future events... -->
<section class="gallery-event">
<h2>Future Event Example</h2>
<p>As we keep building memories, photos will appear right here!</p>
<div class="gallery-grid">
<!-- No images yet, but we can add them after the event happens. -->
</div>
</section>
</main>
</div>
<!-- Script for icons or mobile menu if needed -->
<script src="script.js"></script>
</body>
</html>