mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-06 21:24:06 -04:00
45 lines
No EOL
1.1 KiB
HTML
45 lines
No EOL
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Automata</title>
|
|
<link href="editor.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="centered" id="center_text">
|
|
<p style="font-size:16px">
|
|
Loading…
|
|
</p>
|
|
<div class="lds-dual-ring"></div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="app" style="display:none" id="app">
|
|
<section class="canvasPane" id="canvasPane">
|
|
<canvas id="canvas"></canvas>
|
|
</section>
|
|
|
|
<div class="hSplit" id="hSplit" title="Drag to resize canvas height"></div>
|
|
|
|
<section class="bottomPane" id="bottomPane">
|
|
|
|
<main class="editorPane">
|
|
<div id="editor"></div>
|
|
</main>
|
|
<div class="vSplit" id="vSplit" title="Drag to resize terminal/editor width"></div>
|
|
|
|
<div class="pane terminalPane">
|
|
<pre id="terminal" class="terminal"></pre>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
|
|
<script type="module" src="index.js"></script>
|
|
</body>
|
|
|
|
</html> |