mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
8803721f3d
* Move to TypeScript from legacy JavaScript * Add support of xterm.js * Hterm is still available for backward compatibility
18 lines
526 B
HTML
18 lines
526 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ .title }}</title>
|
|
<link rel="icon" type="image/png" href="favicon.png">
|
|
<link rel="stylesheet" href="./css/index.css" />
|
|
<link rel="stylesheet" href="./css/xterm.css" />
|
|
<link rel="stylesheet" href="./css/xterm_customize.css" />
|
|
<script src="/js/hterm.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="terminal"></div>
|
|
<script src="./auth_token.js"></script>
|
|
<script src="./config.js"></script>
|
|
<script src="./js/bundle.js"></script>
|
|
</body>
|
|
</html>
|