-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (61 loc) · 2.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<!--<base href="$FLUTTER_BASE_HREF">-->
<base href="/">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta content="검은 사막 온라인 편의성 도구 모음 | 제작자 햄뮤" name="description">
<!-- Google search engine -->
<meta content="fahdkc5Z4GY4O_xXkE3seM1IF7d6IXxQn7SMK_CYmRg" name="google-site-verification"/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W9DJ1J6PL5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-W9DJ1J6PL5', {send_page_view: false});
/* Send flutter page transitions */
sendNavigation = function (location) {
try{
gtag('event', 'page_view', {
page_title: location,
page_location: location,
page_path: location,
send_to: 'G-W9DJ1J6PL5'
})
} catch (e) {
console.log(e)
}
}
</script>
<!-- iOS meta tags & icons -->
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="blue" name="apple-mobile-web-app-status-bar-style">
<meta content="Karanda" name="apple-mobile-web-app-title">
<link href="icons/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Favicon -->
<link href="icons/favicon.ico" rel="icon" type="image/x-icon"/>
<link href="icons/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<!-- Custom CSS -->
<link href="styles.css" rel="stylesheet" type="text/css">
<title>Karanda</title>
<link href="manifest.json" rel="manifest">
</head>
<body>
<img id="splashImage" class="center" src="img/flutter-logo.png"/>
<!-- Hide background image in broadcast widgets -->
<script>
if(window.location) {
const hash = window.location.hash;
const re = /^#\/broadcast-widget\/[a-z]/;
if(re.test(hash)){
document.getElementById("splashImage").hidden = true;
}
}
</script>
<script src="flutter_bootstrap.js" async></script>
</body>
</html>