31 lines
712 B
HTML
31 lines
712 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Lists — GD Demand List</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body data-page="lists">
|
|
<header>
|
|
<h1>Demand Lists</h1>
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="players.html">Players</a>
|
|
</nav>
|
|
</header>
|
|
<main class="layout">
|
|
<aside class="sidebar panel">
|
|
<h2>Levels</h2>
|
|
<ul id="levels"></ul>
|
|
</aside>
|
|
|
|
<section class="panel content">
|
|
<h2 id="list-title">All Videos</h2>
|
|
<div id="list-area"></div>
|
|
</section>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|