-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.12 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.12 KB
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
<html>
<head>
<title>Electra Code</title>
<link rel="stylesheet" href="./node_modules/jstree/dist/themes/default/style.css" />
<link rel="stylesheet" href="./node_modules/xterm/css/xterm.css" />
<link rel="stylesheet" href="./node_modules/jquery-ui-dist/jquery-ui.css" />
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<div class="container">
<div class="main-window">
<div class="explorer">
<div class="exp-heading">EXPLORER</div>
<div class="tree" id="jstree"></div>
</div>
<div class="editor-terminal-window">
<div class="file-tabs" id="file-tabs">
<ul>
</ul>
</div>
<div class="editor" id="editor"></div>
<div class="terminal" id="terminal"></div>
</div>
</div>
</div>
<script src="./node_modules/jstree/dist/jstree.js"></script>
<script src="renderer.js"></script>
</body>
</html>