forked from mamamia5x/HTML5-Compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HTML5 Compiler</title>
<link rel="shortcut icon" href="img/favicon.png" />
<link href="styles/fontawesome.css" rel="stylesheet" type="text/css" />
<link href="styles/style.css" rel="stylesheet" type="text/css" />
<link href="styles/sidebar.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="loading" class="shown"><img id="loadingImg" src='img/loading.gif'></div>
<div id='toload' class="hidden">
<i onclick="sidebar()" class="fa fa-bars options mouse"></i>
<i onclick='addfile()' id="addButton" class="hidden fa fa-plus options mouse"></i>
<div style="color: white" id="topbar">
<p style="font-family: 'Roboto', sans-serif;text-align: right;">V.0.2.1 <a target="_blank" id="git" href="https://github.com/mamamia5x/HTML5-Compiler" class="fa fa-github mouse"></a></p>
<div class='topmargin'>
<!-- Unused for now -->
</div>
<button onclick="run ()" class='runbutton'>Run</button>
<!-- Side bar tools, from another project -->
<div id="maker" class="hidden">
<div id="tools" class="sidenav left">
<br>
<button onclick="loadfile(this.innerText)" class="mouse select">index.html</button>
<!-- The first file is index.html -->
<div id="afterFirst">
</div>
</div>
</div>
<!-- End Side Bar -->
</div>
<iframe frameBorder="0" id="program"></iframe>
<div id="separator"></div>
<div id="topspace"></div>
<div id="editor"></div>
</div>
<script data-main="scripts/startup" src="scripts/require.js"></script>
</body>
</html>