-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
49 lines (42 loc) · 1.47 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FNWLCM181D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FNWLCM181D');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="icon.ico">
<title>
wavemaker
</title>
<link rel="stylesheet" href="themes/wavemaker.css">
<link rel="stylesheet" id="themeSwitch" href="themes/wavemaker.css">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script src="wavemaker.js"></script>
<script src="https://apis.google.com/js/api.js"></script>
<script src="https://accounts.google.com/gsi/client"></script>
<!-- built files will be auto injected -->
<script>
window.addEventListener('appinstalled', (event) => {
if ('function' === typeof ga) {
// Default GA.
ga('send', 'event', 'pwa', 'install');
} else if ('function' === typeof __gaTracker) {
// MonsterInsights.
__gaTracker('send', 'event', 'pwa', 'install');
}
});
</script>
<audio preload="auto" src="/audio/type.mp3"></audio>
</body>
</html>