-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>git calendar beat</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="/public/manifest.json" />
<link rel="stylesheet" href="/dist/style.css" />
<link rel="stylesheet" type="text/css" href='/src/assets/icon/icomoon/style.css'/>
<link href="https://fonts.googleapis.com/css?family=Glegoo:400,700|Six+Caps&display=swap" rel="stylesheet">
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root" class="root">
<style>
html {
background-color: black;
color: white;
font-family: monospace;
}
a {
color: inherit;
}
</style>
</div>
</body>
<!-- Main -->
<div id="root"></div>
<script src="/dist/index.js"></script>
<!-- <script>
setTimeout(() => {
var bundleTag = document.createElement('script');
// var wasmTag = document.createElement('script');
bundleTag.src = './dist/bundle.js';
// wasmTag.src = './dist/pkg';
document.body.appendChild(bundleTag);
// document.body.appendChild(wasmTag);
}, 1);
</script> -->
</html>