Files
h-play/public/index.html
T
2026-09-15 15:18:12 +02:00

61 lines
1.8 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kaizoku Library</title>
<link rel="stylesheet" href="/assets/styles.css">
</head>
<body>
<div class="app">
<aside class="sidebar">
<div class="topline">
<div class="brand-wrap">
<h1>Kaizoku</h1>
<p class="shell-note">Private anime library</p>
</div>
<span id="libraryBadge" class="badge">Library</span>
</div>
<nav class="page-links" aria-label="Primary navigation">
<a class="page-link active" href="/">Collection</a>
<button id="rescanBtn" class="page-action" type="button">Rescan</button>
</nav>
<label class="search-label">
<span>Search collection</span>
<input id="searchInput" type="search" placeholder="Title, folder, file" autocomplete="off">
</label>
<div id="titleList" class="title-list" aria-label="Titles"></div>
</aside>
<main class="layout">
<header class="toolbar">
<div>
<h2>Collection</h2>
<p id="libraryPath" class="muted"></p>
</div>
<span class="badge">Local</span>
</header>
<section id="details" class="details">
<div class="empty">
<h2>No titles found</h2>
<p>Mount or create a Library folder with one folder per movie or series.</p>
</div>
</section>
</main>
</div>
<template id="titleButtonTemplate">
<button class="title-button" type="button">
<span class="title-button__name"></span>
<span class="title-button__meta"></span>
</button>
</template>
<script src="/assets/app.js"></script>
</body>
</html>