Click any thumbnail to open full-size in overlay. Click backdrop or press Escape to close. PDF thumbs now clickable too. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Electronics Inventory</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="preload" as="fetch" href="/templates.html" crossorigin>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="app-title">Electronics Inventory</div>
|
|
<nav>
|
|
<button class="nav-btn active" data-section="components">Components</button>
|
|
<button class="nav-btn" data-section="inventory">Inventory</button>
|
|
<button class="nav-btn" data-section="fields">Fields</button>
|
|
<button class="nav-btn" data-section="grids">Grids</button>
|
|
<button class="nav-btn" data-section="templates">Templates</button>
|
|
</nav>
|
|
<div class="maint-menu" id="maint-menu">
|
|
<button class="maint-toggle" id="maint-toggle" title="Maintenance">⚙</button>
|
|
<div class="maint-dropdown" id="maint-dropdown" hidden>
|
|
<button class="maint-item" id="maint-gen-thumbs">Generate missing PDF thumbnails</button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main id="main"></main>
|
|
<div id="lightbox" hidden>
|
|
<img id="lightbox-img" alt="">
|
|
</div>
|
|
<script type="module" src="/app.mjs"></script>
|
|
</body>
|
|
</html>
|