-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAlumni.html
More file actions
316 lines (278 loc) · 12.1 KB
/
Alumni.html
File metadata and controls
316 lines (278 loc) · 12.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
316
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta description="Alumni | Centre for Peace Praxis">
<meta keywords="Alumni | Centre for Peace Praxis">
<meta author="Centre for Peace Praxis">
<title>Alumni | Centre for Peace Praxis</title>
<link rel="icon" type="image/png" href="logo.png">
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap"
rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS Library -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Tailwind CSS (CDN for compatibility) -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@3.0.0/dist/tailwind.min.css">
<style>
/* Specific Page Overrides */
.event-hero {
background-image: linear-gradient(rgba(26, 95, 122, 0.85), rgba(42, 157, 143, 0.8)), url('role_of_religious_bg.jpg');
background-size: cover;
background-position: center;
color: white;
padding: 150px 20px;
text-align: center;
position: relative;
}
.event-hero h1 {
color: white;
font-size: 3.5rem;
margin-bottom: 15px;
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
/* Gallery Grid */
.gallery-container {
max-width: 1200px;
margin: 60px auto;
padding: 0 20px;
}
.gallery-grid {
display: grid;
/* Improved responsiveness for gallery */
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.gallery-item {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
position: relative;
background: white;
}
.gallery-item:hover {
transform: translateY(-5px);
}
.gallery-img {
width: 100%;
height: 350px;
object-fit: cover;
display: block;
}
.gallery-caption {
padding: 20px;
text-align: center;
color: var(--dark);
font-weight: 600;
}
@media (max-width: 768px) {
.event-hero h1 {
font-size: 2.5rem;
}
}
/* Footer Logo Styles */
.footer-logo-wrapper {
width: 100%;
display: flex;
justify-content: center;
margin-top: 16px;
}
.christ-logo {
height: 122px;
object-fit: contain;
opacity: 0.8;
}
@media (min-width: 768px) {
.christ-logo {
height: 122px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header id="header">
<div class="header-container">
<a href="index.html" class="logo" target="_blank">
<div class="logo-img">
<img src="current_logo.png" alt="CPP Logo" id="header-logo-img">
</div>
<div class="logo-text" id="header-logo-text">Centre for <span>Peace Praxis</span></div>
</a>
<button class="mobile-menu-btn" id="mobileMenuBtn">
<i class="fas fa-bars"></i>
</button>
<nav id="mainNav">
<ul>
<li><a href="index.html#home" target="_blank" id="nav-home">Home</a></li>
<li><a href="index.html#about" target="_blank" id="nav-about">About</a></li>
<li><a href="index.html#workshops" target="_blank" id="nav-workshops">Workshops</a></li>
<li><a href="index.html#volunteer" target="_blank" id="nav-volunteer">Volunteer</a></li>
<li><a href="gallery.html" id="nav-gallery">Gallery</a></li>
<li class="dropdown">
<a href="#" class="dropbtn" id="nav-community">Community <i class="fas fa-caret-down"></i></a>
<div class="dropdown-content">
<a href="Faculties.html" id="nav-faculties">Faculties</a>
<a href="students.html" id="nav-students">Students</a>
<a href="Alumni.html" id="nav-alumni">Alumni</a>
</div>
</li>
<li><a href="index.html#contact" target="_blank" id="nav-contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="alumni-hero" class="event-hero">
<div class="container mx-auto" data-aos="fade-up">
<h1 id="alumni-title">Our Alumni</h1>
<p id="alumni-desc" class="text-xl max-w-2xl mx-auto opacity-90">Graduates who continue to carry the torch
of peace and
resilience.</p>
</div>
</section>
<!-- Main Content -->
<main>
<div class="gallery-container" data-aos="fade-up">
<div class="gallery-grid">
<!-- Alumni 1 -->
<div class="gallery-item">
<img src="https://ui-avatars.com/api/?name=Alumni+One&background=random&color=fff&size=512"
alt="Alumni 1" class="gallery-img" id="alumni-1-img">
</div>
<!-- Alumni 2 -->
<div class="gallery-item">
<img src="https://ui-avatars.com/api/?name=Alumni+Two&background=random&color=fff&size=512"
alt="Alumni 2" class="gallery-img" id="alumni-2-img">
</div>
<!-- Alumni 3 -->
<div class="gallery-item">
<img src="https://ui-avatars.com/api/?name=Alumni+Three&background=random&color=fff&size=512"
alt="Alumni 3" class="gallery-img" id="alumni-3-img">
</div>
<!-- Alumni 4 -->
<div class="gallery-item">
<img src="https://ui-avatars.com/api/?name=Alumni+Four&background=random&color=fff&size=512"
alt="Alumni 4" class="gallery-img" id="alumni-4-img">
</div>
<!-- Alumni 5 -->
<div class="gallery-item">
<img src="https://ui-avatars.com/api/?name=Alumni+Five&background=random&color=fff&size=512"
alt="Alumni 5" class="gallery-img" id="alumni-5-img">
</div>
<!-- Alumni 6 -->
<div class="gallery-item">
<img src="https://ui-avatars.com/api/?name=Alumni+Six&background=random&color=fff&size=512"
alt="Alumni 6" class="gallery-img" id="alumni-6-img">
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer id="contact">
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<div class="logo-text">Centre for <span>Peace Praxis</span></div>
<p>Building communities of hope, healing, and resilience through peace literacy and intercultural
dialogue.</p>
<div class="social-links">
<a href="https://www.instagram.com/centreforpeacepraxis?igsh=MXdqNnhoMzM5eWZ4dQ=="
target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/centre-for-peace-praxis/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
</div>
<p style="font-size: 0.8rem; margin-top: 15px; opacity: 0.7; text-transform: uppercase;">Report
Prepared By: Abishek Chetty A</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html" target="_blank" id="footer-link-1">Home</a></li>
<li><a href="index.html#about" target="_blank" id="footer-link-2">About Us</a></li>
<li><a href="index.html#pillars" target="_blank" id="footer-link-3">Our Pillars</a></li>
<li><a href="index.html#workshops" target="_blank" id="footer-link-4">Workshops</a></li>
<li><a href="index.html#volunteer" target="_blank" id="footer-link-5">Volunteer</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact Info</h3>
<ul>
<li><i class="fas fa-map-marker-alt"></i><a href="https://www.christuniversity.in/"
target="_blank" id="footer-address"> CHRIST
University</a></li>
<li><i class="fas fa-phone"></i> <span id="footer-phone">080 4012 9361</span></li>
<li><i class="fas fa-envelope"></i><a href="mailto:peace.praxis@christuniversity.in"
target="_blank" id="footer-email">peace.praxis@christuniversity.in</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Our Partners</h3>
<ul>
<li>Educational Institutions</li>
<li>Civil Society Groups</li>
<li>Government Bodies</li>
<li>International Partners</li>
</ul>
</div>
</div>
<div class="footer-logo-wrapper">
<img src="CHRIST_LOGO1.png" alt="CHRIST Logo" class="christ-logo">
</div>
<div class="copyright">
<p>© 2023 Centre for Peace Praxis. All rights reserved. | <i class="fas fa-heart"
style="color: #e76f51;"></i> for peacebuilding</p>
</div>
</div>
</footer>
<!-- AOS Script -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init({
duration: 800,
once: true,
offset: 50
});
// Mobile menu functionality
const mobileMenuBtn = document.getElementById('mobileMenuBtn');
const mainNav = document.getElementById('mainNav');
const header = document.getElementById('header');
if (mobileMenuBtn && mainNav) {
mobileMenuBtn.addEventListener('click', () => {
mainNav.classList.toggle('active');
if (mainNav.classList.contains('active')) {
mobileMenuBtn.innerHTML = '<i class="fas fa-times"></i>';
mobileMenuBtn.style.color = 'var(--dark)';
} else {
mobileMenuBtn.innerHTML = '<i class="fas fa-bars"></i>';
mobileMenuBtn.style.color = 'var(--primary)';
}
});
// Close mobile menu when a link is clicked
document.querySelectorAll('nav a').forEach(link => {
link.addEventListener('click', () => {
mainNav.classList.remove('active');
mobileMenuBtn.innerHTML = '<i class="fas fa-bars"></i>';
});
});
}
// Sticky Header Effect
window.addEventListener('scroll', () => {
if (header) {
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
}
});
</script>
<script src="content-loader.js"></script>
</body>
</html>