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>
48 lines
1.9 KiB
HTML
48 lines
1.9 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="layout">
|
||
<div class="layout">
|
||
<aside>
|
||
<a class="nav-item" href="/" data-nav="live"><span class="ico">▦</span>Live view</a>
|
||
<a class="nav-item" 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="settings-main">
|
||
<div class="wrap" style="max-width:1100px">
|
||
<div class="card">
|
||
<div class="card-head">
|
||
<h2>Настройка раскладки</h2>
|
||
<div style="display:flex;align-items:center;gap:10px">
|
||
<label class="muted">Раскладка:</label>
|
||
<select id="layout-dim">
|
||
<option value="2">4 (2×2)</option>
|
||
<option value="3">9 (3×3)</option>
|
||
<option value="4">16 (4×4)</option>
|
||
<option value="5">25 (5×5)</option>
|
||
<option value="6">36 (6×6)</option>
|
||
<option value="7">49 (7×7)</option>
|
||
<option value="8">64 (8×8)</option>
|
||
</select>
|
||
<button id="layout-save">Сохранить</button>
|
||
</div>
|
||
</div>
|
||
<div class="muted" style="margin-bottom:12px">Назначьте камеру в каждую ячейку раскладки. Сохраняется в этом браузере.</div>
|
||
<div id="layout-grid" class="layout-grid"></div>
|
||
<div class="muted" id="layout-saved" style="margin-top:12px;font-size:12px"></div>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
</div>
|
||
|
||
<script src="/static/app.js"></script>
|
||
</body>
|
||
</html>
|