Add initial implementation of GD Demand List application with multi-page support
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user