-
Notifications
You must be signed in to change notification settings - Fork 3
/
unit.html
44 lines (42 loc) · 1.2 KB
/
unit.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
<!DOCTYPE html>
<html>
<head>
<title>Unit</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-theme.css" />
<link rel="stylesheet" href="css/main.css" />
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/underscore-min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript">
var unitSlug = document.location.search.slice(1);
$(outUnit.bind(this,unitSlug));
</script>
</head>
<body>
<div class="container unit">
<div class="row">
<div class="col-md-4">
<img class="out__img" />
</div>
<div class="col-md-8">
<div class="page-header">
<h2 class="out__name"></h2>
</div>
<table class="table table-striped out__general">
</table>
</div>
</div>
<div class="page-header">
<h3>Levels and Upgrades</h3>
</div>
<table class="table table-striped out__levels">
</table>
<div id="out"></div>
<div id="log"></div>
<div id="footer_links">
<a href="https://empireofcode.com">Empire of Code</a>
</div>
</div>
</body>
</html>