2014-03-24 16:17:33 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
<html>
|
2018-06-03 11:18:34 +01:00
|
|
|
<head>
|
|
|
|
|
<title>xterm.js demo</title>
|
2020-03-19 18:26:45 -07:00
|
|
|
<!--
|
|
|
|
|
WARNING: This demo is a barebones implementation designed for development and evaluation
|
|
|
|
|
purposes only. It is definitely NOT production ready and does not aim to be so. Exposing the
|
|
|
|
|
demo to the public as is would introduce security risks for the host.
|
|
|
|
|
-->
|
2019-05-18 19:56:28 -07:00
|
|
|
<link rel="shortcut icon" type="image/png" href="/logo.png">
|
2019-05-26 12:48:11 -07:00
|
|
|
<link rel="stylesheet" href="/xterm.css" />
|
2025-12-26 10:54:07 -08:00
|
|
|
<link rel="stylesheet" href="/index.css" />
|
2018-06-03 11:18:34 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-12-24 16:43:35 -08:00
|
|
|
<div id="banner">
|
|
|
|
|
<span class="banner-title">xterm.js</span>
|
2025-12-24 17:09:20 -08:00
|
|
|
<div class="banner-tabs"></div>
|
2025-12-24 16:43:35 -08:00
|
|
|
</div>
|
2021-08-30 15:14:15 +05:30
|
|
|
<div id="container">
|
2023-08-18 16:30:36 -07:00
|
|
|
<div class="grid">
|
2021-08-30 15:14:15 +05:30
|
|
|
<div id="terminal-container"></div>
|
|
|
|
|
</div>
|
2025-12-24 16:43:35 -08:00
|
|
|
<div id="sidebar" class="grid">
|
2018-06-03 11:18:34 +01:00
|
|
|
</div>
|
2023-08-18 16:30:36 -07:00
|
|
|
</div>
|
2021-08-30 15:14:15 +05:30
|
|
|
<script src="dist/client-bundle.js" defer ></script>
|
|
|
|
|
</body>
|
2016-06-05 08:22:22 +03:00
|
|
|
</html>
|