forked from scidsg/relaylove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (69 loc) · 3.06 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
71
72
73
74
75
76
77
78
79
<!doctype html>
<!-- Hey there! Thanks for taking a closer look at the code 😎
This project is a work IN-PROGRESS! If you'd like to help make
it better - i.e. more accessible, align closer with
W3C/WHATWG Standards, etc - please consider contributing 🙏 -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Glenn Sorrentino">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A Temporary Snowflake Proxy">
<!-- Keep the description to around 20 words or 150 characters so it displays fully on Google search results. -->
<title>A Temporary Snowflake Proxy</title>
<link rel="icon" type="image/x-icon" href="assets/images/favicon/favicon.ico">
<link rel="stylesheet" href="assets/css/global.css">
</head>
<body>
<div class="banner" id="closeBanner">
<p><a href="https://support.signal.org/hc/en-us/articles/360056052052-Proxy-Support" target="_blank"
rel="noopener noreferrer">Signal Proxy</a>: <a href="https://signal.tube/#signalapp.love" target="_blank"
rel="noopener noreferrer">https://signal.tube/#signalapp.love</p><a class="bannerBtn"
onclick="closeBanner()"></a>
</div>
<header>
<div class="wrapper">
<div class="logo">
<div class="logoMark"></div>
<h1>❄️ A Temporary Snowflake Proxy</h1>
</div>
<nav>
<ul>
<li><a role="button" class="btn primaryBtn btnLrg" href="https://github.com/glenn-sorrentino/relay.love"
target="_blank" rel="noopener noreferrer">Clone This Project</a></li>
</ul>
</nav>
</div>
</header>
<div role="main">
<section class="intro">
<div class="wrapper">
<div class="group">
<div class="description">
<h2>Share the free internet</h2>
<p>You can help people bypass censorship by enabling the Snowflake proxy on your right. Once the snowflake
icon turns green, it means that a user in a censored country is connecting through your proxy to access
the Internet without restrictions.</a>.
</p>
<p>To learn more about Snowflake, visit: <a
href="https://snowflake.torproject.org">snowflake.torproject.org</a></p>
<p class="meta">❤️ This webpage is inspired by <a href="https://glennsorrentino.com" target="_blank"
rel="noopener noreferrer">Glenn Sorrentino</a></p>
<p class="meta">This project is maintained on <a target="_blank"
href="https://github.com/jordanopensource/snowflake-web">github</a> by <a href="https://josa.ngo"
target="_blank" rel="noopener noreferrer">JOSA</a></p>
</div>
<iframe src="https://snowflake.torproject.org/embed.html" width="320" height="240" frameborder="0"
scrolling="no"></iframe>
</div>
</div>
</section>
</div>
<script>
const closeBanner = () => {
const element = document.getElementById("closeBanner");
element.classList.toggle('hidden')
}
</script>
</body>
</html>