- M5: 📱 toolbar button → modal with a client-side QR of location.origin
(shareable when opened via the LAN IP) + localhost tip
- M4: manifest.webmanifest + icon.svg + sw.js (network-first, never intercepts
/term or /hook) + registration in main.ts; apple-touch + theme-color meta
- Browser-verified: QR canvas renders, SW 'controlled', manifest linked,
no console errors. 199 tests green, build ok.
25 lines
783 B
HTML
25 lines
783 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<title>Web Terminal</title>
|
|
<link rel="manifest" href="./manifest.webmanifest">
|
|
<meta name="theme-color" content="#1a1a1a">
|
|
<link rel="apple-touch-icon" href="./icon.svg">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<link rel="stylesheet" href="./build/main.css">
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<div id="tabbar">
|
|
<div id="tabs"></div>
|
|
<div id="toolbar"></div>
|
|
</div>
|
|
<div id="term"></div>
|
|
<div id="keybar"></div>
|
|
<script type="module" src="./build/main.js"></script>
|
|
</body>
|
|
</html>
|