32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, viewport-fit=cover, maximum-scale=1.0, user-scalable=0"
|
|
>
|
|
<title>Demo | XTerminal</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div id="demo-shell">
|
|
<div id="app"></div>
|
|
<div id="touch-tools" class="tc-touch-tools">
|
|
<button class="tc-key-btn" data-action="up">↑</button>
|
|
<button class="tc-key-btn" data-action="down">↓</button>
|
|
<button class="tc-key-btn" data-action="left">←</button>
|
|
<button class="tc-key-btn" data-action="right">→</button>
|
|
<button class="tc-key-btn" data-action="tab">Tab</button>
|
|
<button class="tc-key-btn" data-action="ls">ls</button>
|
|
<button class="tc-key-btn" data-action="enter">Enter</button>
|
|
<button class="tc-key-btn" data-action="ctrlc">Ctrl+C</button>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="main.js"></script>
|
|
</body>
|
|
</html>
|