-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Access the world wide web">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" href="" id="favicon">
<script src="./script/particles.js"></script>
<!--script async>
// Incognito analytics
// Only tracks user visits!
// Remove when needed.
navigator.sendBeacon('./data/visit');
(async() => {
const res = await fetch('./data/create-id');
const id = await res.text();
setInterval(() => {
navigator.sendBeacon('./data/keep-alive', id);
}, 15000)
window.addEventListener('beforeunload', () => {
navigator.sendBeacon('./data/destroy', id);
});
})();
</script-->
</head>
<body>
<script>
document.body.setAttribute('data-appearance', (localStorage.getItem('incog||appearance')))
</script>
<header data-init>
<div class="search"></div>
<nav></nav>
<a id="open-nav"><i style="color: var(--accent)" class="fas fa-sliders-h secondary"></i></a>
<a id="close-nav">close</a>
</header>
<main></main>
<div style="display: none" class="access-panel">
<div class="controls">
<img class="icon" src="img/globe.svg">
<input disabled="disabled" value="">
<button class="interact access-link" style="margin-right: 5px">attachment</button>
<button class="interact refresh-access" style="margin-right: 5px">refresh</button>
<button class="interact close-access">close</button>
</div>
<!--button class="toggle">expand_more</button-->
</div>
<iframe src="about:blank" class="access-frame" style="position: absolute; overflow-x: hidden; width: 100%; height: 100%; display: none; border: none; background: #FFF;"></iframe>
<form id="access-form"></form>
<div class="particles"></div>
<script src="script/index.js" type="module"></script>
</body>
</html>