-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="/scripts/ads.js"></script>
<script src="/scripts/ads-prebid.js"></script>
<script src="/scripts/prebid-ads.js"></script>
<title>Web Tracking Protection</title>
<link rel="canonical" href="http://online-privacy.bastipnt.de/" />
<meta name="theme-color" content="#feede3" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Web Tracking Protection" />
<meta
name="twitter:description"
content="A webpage, that helps you protect you online privacy."
/>
<meta name="twitter:image" content="http://online-privacy.bastipnt.de/screenshot.png" />
<meta name="twitter:image:alt" content="Screenshot of Web Tracking Protection webpage" />
<meta property="og:url" content="http://online-privacy.bastipnt.de/" />
<meta property="og:title" content="Web Tracking Protection" />
<meta
property="og:description"
content="A webpage, that helps you protect you online privacy."
/>
<meta property="og:image" content="http://online-privacy.bastipnt.de/screenshot.png" />
<meta property="og:image:alt" content="Screenshot of Web Tracking Protection webpage" />
<meta property="og:site_name" content="web-tracking-protection" />
</head>
<body class="bg-surface">
<div id="root" class="flex min-h-screen flex-col justify-between"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
(() => {
const redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
</body>
</html>