30 lines
737 B
HTML
30 lines
737 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<title>Talc Web REPL</title>
|
||
|
|
||
|
<script type="module" src="main.js"></script>
|
||
|
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="terminal">
|
||
|
<div id="history">
|
||
|
<div>Talc Web REPL</div>
|
||
|
<div>For help, see
|
||
|
<a href="https://talc.trimill.xyz/" target="_blank">the docs</a>
|
||
|
or
|
||
|
<a href="https://g.trimill.xyz/trimill/talc" target="_blank">the repository</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="input_line">
|
||
|
<div id="prompt" class="prompt">>> </div>
|
||
|
<div id="input" style="display: inline-block" contenteditable="true"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|