-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (78 loc) · 3.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<!-- License Acknowledgements: https://code.artrium.app/LICENSE -->
<title>Artrium Code</title>
<meta charset="utf-8">
<meta name="author" content="Lucas Han">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" href="favicon.ico">
<script src="https://codemirror.net/lib/codemirror.js"></script>
<script src="https://codemirror.net/addon/edit/closebrackets.js"></script>
<script src="https://codemirror.net/addon/edit/continuelist.js"></script>
<script src="https://codemirror.net/addon/edit/trailingspace.js"></script>
<script src="https://codemirror.net/addon/hint/anyword-hint.js"></script>
<script src="https://codemirror.net/addon/hint/javascript-hint.js"></script>
<script src="https://codemirror.net/addon/hint/css-hint.js"></script>
<script src="https://codemirror.net/addon/hint/html-hint.js"></script>
<script src="https://codemirror.net/addon/hint/sql-hint.js"></script>
<script src="https://codemirror.net/addon/hint/xml-hint.js"></script>
<script src="https://codemirror.net/addon/comment/comment.js"></script>
</head>
<body>
<div id="contextmenu" class="hidden">
<button type="button" id="delete">Delete</button>
<button type="button" id="rename">Rename</button>
</div>
<nav>
<h3>
<a href="https://code.artrium.app">Artrium Code<span>:</span></a>
<div></div>
</h3>
<span>Public v0.5</span>
<div>
<button id="download" title="Download file">
<img src="img/download.webp">
</button>
<label for="open" title="Open File">
<img src="img/open.webp">
</label>
<a href="https://github.com/ldhan0715/artrium-code" title="GitHub Repo">
<img src="img/github.webp">
</a>
</div>
</nav>
<div id="fileExplorer">
<button>+ Create New File</button>
<form class="hidden"><input type="text" autocomplete="false" spellcheck="false" placeholder="Enter File Name"></form>
</div>
<div id="full-edit">
<div id="edit">
<div id="tabs"></div>
<textarea class="hidden"></textarea>
<div id="logoPage">
<img src="img/artrium.png">
<div>No File Selected</div>
</div>
</div>
<div id="console">
<div id="mode"><div>Problems</div><div>Terminal</div></div>
<div id="problems" class="hidden">
<div class="err">No errors have occured yet.</div>
</div>
<div id="terminal" class="hidden">
<div>Artrium Code Terminal: v0.1<br>https://github.com/ldhan0715/artrium-code<br></div>
<div id="termInput">> <form onsubmit="runCode_terminal(event)"><input type="text"></form></div>
</div>
</div>
</div>
<input type="file" id="open" style="display: none">
<script src="js/init.js"></script>
<script src="js/editor.js"></script>
<script src="js/file.js"></script>
<script src="js/console.js"></script>
<script src="js/shortcut.js"></script>
<script src="js/avi.js"></script>
</body>
</html>