-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path40kListBuilder.html
52 lines (44 loc) · 1.07 KB
/
40kListBuilder.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>40k List Builder</title>
<link rel="stylesheet" type="text/css" href="Content/40kListBuilder/style.css">
</head>
<body>
<div id="topBar">
<img src="Content/40kListBuilder/resources/icons/40k.png"/>
<h1>List Builder 8th Ed. - Aeldari edition</h1>
<table>
<tr>
<td class="costs">
<table>
<tr><td id="POWER"></td></tr>
<tr><td id="WOUNDS"></td></tr>
<tr><td id="MODELS"></td></tr>
</table>
</td>
<td id="POINTS" class="points">
</td>
</tr>
</table>
</div>
<div id="sidenav" class="sidenav">
<p id="factionBtn" class="closebtn">☰</p>
<ul id="factionList">
</ul>
<div class="spacer"></div>
</div>
<div id="availableList">
<h2>Select A Faction</h2>
</div>
<div id="newList">
<div id="newListContents">
</div>
</div>
<div id="editor">
<div id="editorForm">
</div>
</div>
<script src="Content/40kListBuilder/js/listbuilder.min.js"></script>
</body>
</html>