forked from almeidapaulopt/tsdproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TSDProxy</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div id="logo">
<a href="/">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="25 25 100 100" fill="none">
<circle cx="75" cy="75" r="50" fill="#4A90E2" />
<circle cx="75" cy="55" r="5" fill="#FFFFFF" />
<circle cx="95" cy="75" r="5" fill="#FFFFFF" />
<circle cx="75" cy="95" r="5" fill="#FFFFFF" />
<circle cx="55" cy="75" r="5" fill="#FFFFFF" />
<line x1="75" y1="55" x2="95" y2="75" stroke="#FFFFFF" stroke-width="2" />
<line x1="95" y1="75" x2="75" y2="95" stroke="#FFFFFF" stroke-width="2" />
<line x1="75" y1="95" x2="55" y2="75" stroke="#FFFFFF" stroke-width="2" />
<line x1="55" y1="75" x2="75" y2="55" stroke="#FFFFFF" stroke-width="2" />
</svg>
<span>TSDProxy</span>
</a>
</div>
<button id="menu-toggle" aria-label="menu toggle button">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 6h16M4 12h16m-7 6h7" />
</svg>
</button>
<div id="desktop-menu">
<a href="https://almeidapaulopt.github.io/tsdproxy/docs/">Documentation</a>
<a href="https://buymeacoffee.com/almeidapaulopt" class="sponsor" target="_blank" rel="noopener noreferrer">Become
a Sponsor</a>
<div class="theme-switcher">
<div class="switch-indicator">
</div>
<span class="sun">☀️</span>
<span class="moon">🌙</span>
</div>
</div>
</header>
<div id="mobile-menu" class="hidden">
<div class="space-y-2">
<a href="https://almeidapaulopt.github.io/tsdproxy/docs/">Documentation</a>
<a href="https://buymeacoffee.com/almeidapaulopt" class="sponsor" target="_blank" rel="noopener noreferrer">Become
a Sponsor</a>
<div class="theme-switcher">
<div class="switch-indicator">
</div>
<span class="sun">☀️</span>
<span class="moon">🌙</span>
</div>
</div>
</div>
<main hx-get="/r/list" hx-trigger="load"></main>
<footer>
<div class="content has-text-centered">
TSDProxy by <strong>Paulo Almeida</strong> with the help of our
<a href="https://github.com/almeidapaulopt/tsdproxy/graphs/contributors" target="_blank"
rel="noopener noreferrer">contributors</a>.
</div>
</footer>
<script src="scripts.js" defer type="module"></script>
</body>
</html>