beacon-watch
52 行
2.0 KiB
HTML
52 行
2.0 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>夜航员 · 灯塔值班室</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Syne:wght@700;800&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="/assets/styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="beam" aria-hidden="true"></div>
|
|
<div class="grain" aria-hidden="true"></div>
|
|
<div class="app">
|
|
<aside class="tower">
|
|
<p class="eyebrow">第三班 · 04:12 潮位</p>
|
|
<h1>夜航员</h1>
|
|
<p class="lede">雾还没散。把要问的话写进值班日志,灯塔会把航道说清楚。</p>
|
|
<dl class="meta">
|
|
<div>
|
|
<dt>岗位</dt>
|
|
<dd>沿海灯塔值班助手</dd>
|
|
</div>
|
|
<div>
|
|
<dt>链路</dt>
|
|
<dd id="link-status">正在核对灯芯</dd>
|
|
</div>
|
|
</dl>
|
|
<p class="starters-label">值班笔记</p>
|
|
<div class="starters" id="starters"></div>
|
|
</aside>
|
|
<main class="logbook">
|
|
<header class="log-head">
|
|
<span class="stamp">值班日志</span>
|
|
<button type="button" id="clear" class="ghost">清空本班</button>
|
|
</header>
|
|
<ol class="thread" id="thread"></ol>
|
|
<form class="composer" id="composer">
|
|
<label class="sr-only" for="prompt">写下要问的话</label>
|
|
<textarea id="prompt" name="prompt" rows="2" placeholder="今夜要问什么?" required></textarea>
|
|
<button type="submit" id="send">发灯</button>
|
|
</form>
|
|
</main>
|
|
</div>
|
|
<script src="/assets/app.js"></script>
|
|
</body>
|
|
</html>
|