02efe2ab4b
All grid/play/fullscreen submenu items are removed from every sidebar (index, archive, settings, layout) — those controls now live in the live grid footer. The sidebar becomes a narrow 72px rail and Live/Archive/Settings render as 64x64 icon tiles (icon + small caption, active = inset red ring). The layout.html gear (only link to /layout) is dropped with its submenu, so the layout editor is now reachable by URL only. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>CoRE.Vision — Архив</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body data-page="archive">
|
|
<div class="layout">
|
|
<aside>
|
|
<a class="nav-item" href="/" data-nav="live"><span class="ico">▦</span>Live view</a>
|
|
<a class="nav-item active" href="/archive" data-nav="archive"><span class="ico">🗄</span>Архив</a>
|
|
<div class="aside-spacer"></div>
|
|
<a class="nav-item" href="/settings" data-nav="settings"><span class="ico">⚙</span>Настройки</a>
|
|
</aside>
|
|
|
|
<main class="archive-main">
|
|
<div class="toolbar">
|
|
<label class="muted">Камера:</label>
|
|
<select id="cam-select"></select>
|
|
<label class="muted">Дата:</label>
|
|
<input type="date" id="date">
|
|
</div>
|
|
<div class="player-wrap" id="player">
|
|
<div class="hint">Кликните по таймлайну ниже, чтобы смотреть запись</div>
|
|
</div>
|
|
<div class="timeline" id="timeline"></div>
|
|
</main>
|
|
</div>
|
|
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|