-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.52 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spot Prices</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="loading-container">
<div class="loading-icon"><i class="fa fa-spinner fa-spin fa-4x"></i></div>
<div class="bbs-branding"><img src="/images/bbslogo.png"></div>
</div>
<div class="loaded-container">
<!-- adrian start -->
<div id="updatesBox">
<h3 class="lastUpdated pull-right"></h3>
<h3 class="currentWeight"></h3>
<div class="clearfix"></div>
</div>
<div id="logoBox"><div id="logo"></div></div>
<div id="goldBox">
<h1>Gold</h1>
<h2 class="goldPrice text-center"></h2>
</div>
<div id="silverBox">
<h1>Silver</h1>
<h2 class="silverPrice text-center"></h2>
</div>
<div id="platinumBox">
<h1>Platinum</h1>
<h2 class="platinumPrice text-center"></h2>
</div>
<div id="palladiumBox">
<h1>Palladium</h1>
<h2 class="palladiumPrice text-center"></h2>
</div>
<!-- adrian end -->
</div>
<script src="socket.io/socket.io.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>