Files
leporello-js/index.html

35 lines
743 B
HTML
Raw Normal View History

2022-10-21 03:25:48 +08:00
<!DOCTYPE html>
2022-09-10 02:48:13 +08:00
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2023-11-21 04:23:33 +08:00
<title>Leporello.js</title>
<script type='module' src='./src/ts_libs.js' async></script>
2022-09-10 02:48:13 +08:00
<script src='ace/ace.js'></script>
<script src='ace/keybinding-vim.js'></script>
2023-06-26 15:12:49 +03:00
<script src='ace/ext-language_tools.js'></script>
<script src="./typescript/typescript.js"></script>
<script type="importmap">
{
"imports": {
"typescript": "./src/typescript-module.js"
}
}
</script>
2022-09-10 02:48:13 +08:00
2024-01-08 01:32:41 +08:00
<script type='module' src="./src/launch.js"></script>
<link rel=stylesheet href='./styles.css'></link>
2022-09-10 02:48:13 +08:00
</head>
<body>
2022-10-21 04:09:55 +08:00
<div id='app' class='app'>
</div>
2022-09-10 02:48:13 +08:00
</body>
</html>