-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (64 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<!--
If you are serving your web app in a path other than the root, change the
href value below to reflect the base path you are serving from.
The path provided below has to start and end with a slash "/" in order for
it to work correctly.
For more details:
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
-->
<base href="/">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta content="My.solved" property="og:title"/>
<meta content="보다 편한 PS/CP를 위한 애플리케이션" name="description">
<meta content="보다 편한 PS/CP를 위한 애플리케이션" property="og:description"/>
<meta content="icons/Icon-512.png" property="og:image"/>
<!-- iOS meta tags & icons -->
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="my_solved" name="apple-mobile-web-app-title">
<link href="icons/Icon-192.png" rel="apple-touch-icon">
<!--iOS-->
<meta content="https://apps.apple.com/kr/app/my-solved/id6444540009" property="al:ios:url">
<meta content="id6444540009" property="al:ios:app_store_id">
<meta content="MY.SOLVED" property="al:ios:app_name">
<!--Android-->
<meta content="https://play.google.com/store/apps/details?id=com.w8385.my_solved"
property="al:android:url">
<meta content="My.solved" property="al:android:app_name">
<meta content="com.w8385.my_solved" property="al:android:package">
<meta content="https://play.google.com/store/apps/details?id=com.w8385.my_solved"
property="al:web:url">
<!-- Favicon -->
<link href="favicon.png" rel="icon" type="image/png"/>
<title>my_solved</title>
<link href="manifest.json" rel="manifest">
<script>
// The value below is injected by flutter build, do not touch.
const serviceWorkerVersion = "1781723261";
</script>
<!-- This script adds the flutter initialization JS code -->
<script defer src="flutter.js"></script>
</head>
<body>
<script>
window.addEventListener('load', function(ev) {
// Download main.dart.js
_flutter.loader.loadEntrypoint({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
}
}).then(function(engineInitializer) {
return engineInitializer.initializeEngine();
}).then(function(appRunner) {
return appRunner.runApp();
});
});
</script>
</body>
</html>