-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (86 loc) · 3.57 KB
/
Copy pathindex.html
File metadata and controls
91 lines (86 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ExploitX - Memory Album</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="nav-logo">
<i class="fas fa-shield-alt"></i>
<span>ExploitX</span>
</div>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="members.html">Members</a></li>
<li><a href="events.html">Events</a></li>
</ul>
<div class="nav-music">
<i class="fas fa-music"></i>
</div>
</nav>
<main>
<section id="home" class="hero-section">
<div class="hero-content">
<h1 class="hero-title">ExploitX Memory Album</h1>
<p class="hero-subtitle">Capturing moments of innovation, security, and excellence</p>
<div class="hero-stats">
<div class="stat">
<span class="stat-number" id="memberCount">0</span>
<span class="stat-label">Members</span>
</div>
<div class="stat">
<span class="stat-number" id="eventCount">0</span>
<span class="stat-label">Events</span>
</div>
</div>
</div>
</section>
<!-- Group Image Section -->
<section class="group-photo-section">
<div class="group-photo-container">
<div class="group-photo-card">
<img id="groupPhoto" src="" alt="ExploitX Team" class="group-image">
<div class="group-photo-overlay">
<h3 class="group-photo-title">The ExploitX Family</h3>
<p class="group-photo-description">United by passion for technology and innovation</p>
</div>
</div>
</div>
</section>
<!-- Quick Links Section -->
<section class="quick-links-section">
<div class="quick-links-container">
<a href="members.html" class="quick-link-card">
<i class="fas fa-users quick-link-icon"></i>
<h3 class="quick-link-title">Meet Our Team</h3>
<p class="quick-link-description">Discover the talented individuals behind ExploitX</p>
<span class="quick-link-count" id="memberCountLink">0 Members</span>
</a>
<a href="events.html" class="quick-link-card">
<i class="fas fa-calendar-alt quick-link-icon"></i>
<h3 class="quick-link-title">Our Events</h3>
<p class="quick-link-description">Explore our journey through CTFs, workshops & more</p>
<span class="quick-link-count" id="eventCountLink">0 Events</span>
</a>
</div>
</section>
</main>
<footer>
<p>© <span id="currentYear"></span> ExploitX Tech Club. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<script>
// Load counts for home page
window.addEventListener('DOMContentLoaded', () => {
loadImagesConfig().then(() => {
loadMembers();
loadEvents();
});
});
</script>
</body>
</html>