-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Camel X3</title>
<link rel="manifest" href="./manifest.json">
<meta name="theme-color" content="#202124">
<link rel="icon" type="image/png" href="assets/icon-512.png" />
<link rel="stylesheet" type="text/css" href="src/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/src/toastify.min.css" rel="stylesheet">
</head>
<body>
<div id="unsupported" class="unsupported limit">
<p>This browser is not supported.</p>
<p>See the <a href="https://github.com/catdad-experiments/reminder">GitHub page</a> for more info.</p>
</div>
<div id="main" class="main limit hide"></div>
<script type="module">
document.querySelector('#unsupported').remove();
document.querySelector('#main').classList.remove('hide');
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/toastify.min.js"></script>
<script type="module" async>
import loader from './src/loader.js';
loader();
</script>
<script async src="/analytics.js"></script>
</body>
</html>