forked from bridge-core/editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
89 lines (85 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,viewport-fit=cover,maximum-scale=1.0,user-scalable=0"
/>
<meta
name="description"
content="bridge. is a light-weight IDE for Minecraft Add-Ons"
/>
<meta name="og:title" content="bridge. v2" />
<meta
name="og:description"
content="bridge. is a light-weight IDE for Minecraft Add-Ons"
/>
<meta name="og:image" content="/img/social-preview.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@bridgeEditor" />
<meta name="twitter:site" content="@solvedDev" />
<meta name="twitter:image" content="/img/social-preview.png" />
<meta name="twitter:title" content="bridge. v2" />
<meta
name="twitter:description"
content="bridge. is a light-weight IDE for Minecraft Add-Ons"
/>
<link
rel="icon"
href="img/icons/favicon.svg"
sizes="any"
type="image/svg+xml"
/>
<title>bridge. v2</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/img/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/img/icons/favicon-16x16.png"
/>
<meta name="theme-color" content="#1778D2" />
<meta name="apple-mobile-web-app-capable" content />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="bridge v2" />
<link
rel="apple-touch-icon"
href="/img/icons/apple-touch-icon-152x152.png"
/>
<link
rel="mask-icon"
href="/img/icons/safari-pinned-tab.svg"
color="#1778D2"
/>
<meta
name="msapplication-TileImage"
content="/img/icons/msapplication-icon-144x144.png"
/>
<meta name="msapplication-TileColor" content="#0F0F0F" />
</head>
<body>
<noscript>
<strong>
We're sorry but bridge. doesn't work properly without JavaScript
enabled. Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<script>
window.global = window
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>