forked from PawiX25/YSWS-Catalog
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
70 lines (64 loc) · 3.32 KB
/
index.html
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
<!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">
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.js"></script>
</head>
<body>
<a href="https://hackclub.com" target="_blank" rel="noopenner noreferrer">
<img src="https://assets.hackclub.com/flag-orpheus-top.svg" width="15%" height=auto style="padding-left: 20px;" class="max-w-20 sm:max-w-36 left-4 sm:left-12 absolute"></a>
<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/hackclub/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="ending-soon">Ending Soon</button>
<button class="filter-btn" data-category="draft">Draft</button>
<button class="filter-btn" data-category="completed">Completed</button>
</div>
<div class="sort-container">
<button class="sort-btn active" data-sort="default">By Category</button>
<button class="sort-btn" data-sort="alphabetical">A-Z</button>
<button class="sort-btn" data-sort="deadline">By Deadline</button>
<button class="sort-btn" data-sort="status">By Status</button>
</div>
<div id="programs-container">
</div>
<div id="program-modal" class="modal">
<div class="program-position"><span class="current-position"></span></div>
<button class="modal-nav modal-prev" aria-label="Previous program">←</button>
<button class="modal-nav modal-next" aria-label="Next program">→</button>
<div class="modal-content card">
<button class="modal-close" aria-label="Close modal">×</button>
<div class="modal-header">
<h2 class="title"></h2>
<span class="program-status"></span>
</div>
<div class="modal-body">
<p class="program-description"></p>
<div class="program-deadline"></div>
<div class="program-details">
<h3>How to Participate</h3>
<div class="participation-steps"></div>
<div class="more-details"></div>
<div class="program-links"></div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>