-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembed.html
45 lines (39 loc) · 1.82 KB
/
embed.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
<!DOCTYPE>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel="stylesheet" href="static/css/vendor/goldenlayout/1.5.9/goldenlayout-base.css" />
<link rel="stylesheet" href="static/css/vendor/goldenlayout/1.5.9/goldenlayout-light-theme.css" />
<link rel="stylesheet" href="static/css/vendor/xterm-5.4.0.min.css" />
<link rel="stylesheet" href="static/css/main.embed.css" />
<title>Proglab</title>
</head>
<body class="terra-embed">
<div class="app-container">
<div class="layout-outer-container">
<div id="layout" class="layout-container"></div>
</div>
</div>
<!-- Load third party libraries -->
<script src="static/js/vendor/jquery/jquery-3.7.1.min.js"></script>
<script src="static/js/vendor/ace/1.4.5/ace.js"></script>
<script src="static/js/vendor/ace/1.4.5/ext-language_tools.js"></script>
<script src="static/js/vendor/goldenlayout-1.5.9.min.js"></script>
<script src="static/js/vendor/xterm/5.4.0/xterm.min.js"></script>
<script src="static/js/vendor/xterm/5.4.0/xterm.fit.min.js"></script>
<!-- Load custom scripts -->
<script src="static/js/constants.js"></script>
<script src="static/js/helpers/shared.js"></script>
<script src="static/js/helpers/editor-component.js"></script>
<script src="static/js/helpers/term-component.js"></script>
<script src="static/js/vfs.js"></script>
<script src="static/js/layout/term.component.js"></script>
<script src="static/js/layout/editor.component.js"></script>
<script src="static/js/layout/layout.js"></script>
<script src="static/js/lang-worker-api.js"></script>
<script src="static/js/main.shared.js"></script>
<script src="static/js/main.embed.js"></script>
</body>
</html>