Delete admelist.html and serverlist.html and update the site to use lists.html as the main live-backed list. README.md was edited to reflect the consolidation (references to serverlist/admelist replaced with lists.html and roulette.html, wording adjusted). lists.html: remove admin/server links, change page title to “FEDL List”, and drop the level column in the table. app.js: update status text to mention the live server list, remove admin editor code and serverlist-specific branches, simplify list rendering (remove level column output) and wire live updates to listPage.applyItems. Miscellaneous: remove unused escapeAttr helper. Overall this simplifies the UI by consolidating live functionality into lists.html and removing the separate admin/server pages.
47 lines
1.2 KiB
HTML
47 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" />
|
|
<title>Lists — GD fedl</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body data-page="lists">
|
|
<header>
|
|
<h1>fedl</h1>
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="players.html">Players</a>
|
|
<a href="rules.html">Rules</a>
|
|
<a href="roulette.html">Roulette</a>
|
|
</nav>
|
|
</header>
|
|
<main class="layout">
|
|
<aside class="sidebar">
|
|
<div class="panel">
|
|
<h2>Levels</h2>
|
|
<ul id="levels"></ul>
|
|
</div>
|
|
</aside>
|
|
|
|
<section class="panel content">
|
|
<div class="search-row">
|
|
<h2 id="list-title">FEDL List</h2>
|
|
<input id="search" type="text" placeholder="Search videos or titles..." />
|
|
<select id="level-filter"><option value="all">All Levels</option></select>
|
|
</div>
|
|
|
|
<div class="table-wrap">
|
|
<table class="levels-table">
|
|
<thead>
|
|
<tr><th style="width:80px">#</th><th>Title</th><th style="width:140px">Action</th></tr>
|
|
</thead>
|
|
<tbody id="list-area"></tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|