mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
22 lines
646 B
HTML
22 lines
646 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>{{ .title }}</title>
|
|
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
|
|
<link rel="icon" href="favicon.ico">
|
|
<link rel="icon" href="icon.svg" type="image/svg+xml">
|
|
<link rel="stylesheet" href="./css/index.css" />
|
|
<link rel="stylesheet" href="./css/xterm.css" />
|
|
<link rel="stylesheet" href="./css/xterm_customize.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="terminal"></div>
|
|
<script src="./auth_token.js"></script>
|
|
<script src="./config.js"></script>
|
|
<script src="./js/gotty.js"></script>
|
|
</body>
|
|
|
|
</html> |