-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
49 lines (47 loc) · 1.11 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>
<head lang="en">
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title></title>
<script src="config.js"></script>
<script src="dist/openmct-mcws.js"></script>
<script>
document.addEventListener(
'DOMContentLoaded',
function () {
openmctMCWS(openmctMCWSConfig);
},
false
);
</script>
<link rel="stylesheet" href="dist/openmct-mcws.css" />
<link
rel="icon"
type="image/png"
href="node_modules/openmct/dist/favicons/favicon-96x96.png"
sizes="96x96"
type="image/x-icon"
/>
<link
rel="icon"
type="image/png"
href="node_modules/openmct/dist/favicons/favicon-32x32.png"
sizes="32x32"
type="image/x-icon"
/>
<link
rel="icon"
type="image/png"
href="node_modules/openmct/dist/favicons/favicon-16x16.png"
sizes="16x16"
type="image/x-icon"
/>
</head>
<body class="user-environ">
<div id="app"></div>
</body>
</html>