io-actions/index.html
2024-05-20 15:41:06 -04:00

23 lines
766 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧩</text></svg>">
<title>Blockly Sample App</title>
<script src="src/index.js" type="module"></script>
</head>
<body>
<div id="page-container">
<div id="menu-pane">
<button id="button-clear">Clear</button>
<button id="button-reload">Reload via Bytecode</button>
<pre id="bytecode-json-container"><code id="bytecode-json"></code></pre>
<pre id="blockly-json-container"><code id="blockly-json"></code></pre>
</div>
<div id="blocklyDiv"></div>
</div>
</body>
</html>