mirror of
https://github.com/System-End/YSWS-Catalog.git
synced 2026-04-19 22:15:06 +00:00
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hack Club YSWS Programs</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle dark mode">
|
|
🌙
|
|
</button>
|
|
<div class="container">
|
|
<h1 class="ultratitle">YSWS Programs</h1>
|
|
<p class="lead">A comprehensive list of Hack Club's "You Ship, We Ship" programs.</p>
|
|
<p class="active-count">Currently <span id="active-count">0</span> active programs</p>
|
|
|
|
<div class="filter-container">
|
|
<button class="filter-btn active" data-category="all">All</button>
|
|
<button class="filter-btn" data-category="active">Active</button>
|
|
<button class="filter-btn" data-category="upcoming">Upcoming</button>
|
|
<button class="filter-btn" data-category="completed">Completed</button>
|
|
</div>
|
|
|
|
<div id="programs-container">
|
|
</div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|