-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (66 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link href="https://fonts.googleapis.com/css?family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Twilight32</h1>
<nav id="menu">
<ul>
<li>File
<ul>
<li>Open...</li>
<li>Save as...</li>
<li>Settings...</li>
</ul>
</li>
<li>Edit
<ul>
</ul>
</li>
<li>Help
<ul>
<li><a href="#" id="menu-about">About...</a></li>
<li><a href="https://github.com/juju2143/twilight32" target="_blank">GitHub</a></li>
</ul>
</li>
</ul>
</nav>
<nav id="tabs">
</nav>
</header>
<main>
<section id="welcome">
<p>Welcome to Twilight32! Twilight32 is a fun and retro-looking web-based IDE not unlike fantasy consoles such as PICO-8, aimed at retro game enthusiasts who want to develop on a platform similar to old computers from the 80's.</p>
<p></p>
<p>Check us out on <a href="https://github.com/juju2143/twilight32" target="_blank">GitHub!</a></p>
</section>
</main>
<footer>
Welcome to Twilight32
</footer>
<div id="loading">
Loading...
</div>
<div id="about" class="dialog">
<h2>About...</h2>
<p class="center">
<img src="img/twilight32.png" width="256" height="256" />
<br/>twilight32 v0.0.1
<br/>A fantasy BASIC console and IDE
<br/>Copyright 2019
<br/>J. P. Savard & contributors
<br/><a href="https://github.com/juju2143/twilight32" target="_blank">https://github.com/juju2143/twilight32</a>
<center><button class="button-close">OK</button></center>
</p>
</div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/monaco-editor/min/vs/loader.js"></script>
<script src="node_modules/wwwbasic/wwwbasic.js"></script>
<script src="main.js"></script>
</body>
</html>