blob: a938c4f4ea5e4f2c6661a86af01f0ec423150ed2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://static.tvl.su/latest/terminal.min.css">
<link rel="stylesheet" href="index.css">
<title>Tvixbolt</title>
</head>
<body>
<script type="module">
import init, { main } from './tvixbolt.js';
async function run() {
await init();
main();
}
run();
</script>
</body>
|