-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·47 lines (38 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="lib/css/themes/default/style.min.css">
<link rel="stylesheet" href="lib/css/themes/default-dark/style.min.css">
<link rel="stylesheet" href="lib/css/sweetalert.css">
<link rel="shortcut icon" href="/favicon.ico"/>
<title>Wiiubru Editor</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> <script src="lib/js/jstree.min.js"></script>
<script src="lib/js/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/js/sweetalert.js" type="text/javascript" charset="utf-8"></script>
<script src="app/js/index.js"></script>
<link rel="stylesheet" href="app/css/index.css" />
</head>
<body onload="onload()">
<div id="toolbar">
sailboat ⛵
<span id="time">--:--:--</span>
<button onclick="javascript:location.href='/auth'">More Time</button>
<button onclick="postcontents()">Save</button>
<button onclick="make()">Make</button>
<button onclick="clean()">Clean</button>
<button onclick="newfile()">New File</button>
<button onclick="newfolder()">New Folder</button>
<button onclick="javascript:location.href='https://github.com/vgmoose/sailboat'">View Source</button>
</div>
<div class="tree" id="files">
Loading...
</div>
<pre class="bigpanel" id="editor" hidden></pre>
<div class="bigpanel" id="preloader">
<!-- Load a file from the left, or clone a project from the toolbar above.-->
Create a new file above, or load one from the left (try src/main.c)
</div>
</body>
</html>