mirror of
https://github.com/System-End/YSWS-Catalog.git
synced 2026-04-19 21:05:07 +00:00
36 lines
1.4 KiB
HTML
36 lines
1.4 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="caption">Want to update or add something? Submit a PR on <a href="https://github.com/PawiX25/YSWS-Catalog" target="_blank">GitHub</a>!</p>
|
|
|
|
<div class="search-container">
|
|
<input type="search" id="program-search" placeholder="Search programs..." class="search-input">
|
|
</div>
|
|
|
|
<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>
|