-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (43 loc) · 1.75 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>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Polymer Starter Kit">
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
<title>OE Studio</title>
<!-- Place favicon.ico in the `app/` directory -->
<link rel="icon" href="node_modules/oe-studio/images/favicon.ico">
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<!-- Chrome for Android theme color -->
<meta name="theme-color" content="#2E3AA1">
<!-- Web Application Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Tile color for Win8 -->
<meta name="msapplication-TileColor" content="#3372DF">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="PSK">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="OE Studio">
<script>
window.OEUtils = window.OEUtils || {designerData:{}};
var baseUrl = window.location.protocol;
baseUrl = '//' + window.location.host;
window.OEUtils.baseurl = baseUrl;
window.OEUtils.uibaseroute = baseUrl;
</script>
<script src="node_modules/oe-studio/oe-studio.js" type="module"></script>
<style>
body{
margin: 0px;
}
</style>
</head>
<body unresolved>
<span id="browser-sync-binding"></span>
<oe-studio></oe-studio>
</body>
</html>