-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuilding.html
More file actions
49 lines (48 loc) · 1.42 KB
/
Copy pathbuilding.html
File metadata and controls
49 lines (48 loc) · 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Hi</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 buildingSlug = document.location.search.slice(1);
$(outBuilding.bind(this,buildingSlug));
</script>
</head>
<body>
<div class="container unit">
<div class="row">
<div class="col-md-4" style="text-align: center">
<img class="out__img" />
</div>
<div class="col-md-8">
<div class="page-header">
<h2 class="out__name"></h2>
</div>
<div class="out__description"></div>
<table class="table table-striped out__lvl_count">
</table>
</div>
</div>
<div class="page-header">
<h3>Levels and Upgrades</h3>
</div>
<table class="table table-striped out__levels">
</table>
<div class="page-header">
<h3>Development</h3>
</div>
<table class="table table-striped out__development">
</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>