-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (57 loc) · 2.51 KB
/
index.html
File metadata and controls
67 lines (57 loc) · 2.51 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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="public/styles.css"/>
<link rel="stylesheet" href="public/leaflet.css" />
<script type="module" src="./club-map.js"></script>
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Hack Club" />
<meta name="twitter:site" content="@hackclub" />
<title>Clubs Map – Hack Club</title>
<meta property="og:title" content="Clubs Map – Hack Club" />
<meta name="twitter:title" content="Clubs Map – Hack Club" />
<meta
name="description"
content="Browse all the high school coding clubs in the global Hack Club network."
/>
<meta
property="og:description"
content="Browse all the high school coding clubs in the global Hack Club network."
/>
<meta
name="twitter:description"
content="Browse all the high school coding clubs in the global Hack Club network."
/>
<meta
property="og:image"
content="https://cloud-5s4fkhvsr.vercel.app/2020-07-25_460dgyn7ge8y6e0ddwd3ywwnkdf93v2f.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://cloud-5s4fkhvsr.vercel.app/2020-07-25_460dgyn7ge8y6e0ddwd3ywwnkdf93v2f.png"
/>
<meta name="theme-color" content="#ec3750" />
<meta name="msapplication-TileColor" content="#ec3750" />
</head>
<body>
<div style="position: absolute; bottom: 10px; left: 10px; color: white; z-index: 999; background: #ec3750; padding: 20px 20px; border-radius: 16px; margin-right: 10px;">
<h2 style="margin-block-start: 0em; margin-block-end: 0em;">The Hack Club Map</h2>
<p id="overlay-text" style="margin-block-start: 0.4em; margin-block-end: 0em;">Add your club using <b><a style="color: white;" href="https://leaders.hackclub.com" target="_blank">The Leaders Portal</a></b></p>
</div>
<script>
const params = new URLSearchParams(window.location.search);
const mode = params.get('mode');
const overlayText = document.getElementById('overlay-text');
if (mode === 'signin') {
overlayText.innerHTML = 'Sign in to manage your club';
} else if (mode === 'manage') {
overlayText.innerHTML = 'Manage your club in the <b><a style="color: white;" href="https://leaders.hackclub.com/my-club" target="_blank">My Club Page</a></b>';
}
</script>
<div class="flag" alt="Hack Club"></div>
<club-map></club-map>
</body>
</html>