-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.html
42 lines (35 loc) · 1.03 KB
/
theme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Directing to URL</title>
</head>
<body style="background-color: #313131;">
<center style="margin-top: 10%;">
<p style="font-size: xx-large; color: #5DADE2;">Redirecting =>
<a style="color: #48C9B0" href="{url}">Here</a>
</p>
</center>
<pre style="color: #F0F3F4;">
.
│
└─►{url}
</pre>
<div style="position: fixed; bottom: 0;">
<hr>
<p style="color: #CB4335;">
<big>
<a style="color: #58D68D;" href="https://github.com/shabane/gitlink">GtiLink Project</a>
</big>
<big style="color: #F0F3F4;"> | </big>
<big> Powered By: </big> <small style="color: #F5B041;">Python & StreamLit</small>
<big style="color: #F0F3F4;"> | </big>
</p>
</div>
<script>
location.replace("{url}")
</script>
</body>
</html>