-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (64 loc) · 3.07 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>WW2012 - Livescoring</title>
<link rel="stylesheet" type="text/css" href="style/master.css" />
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/underscore.js"></script>
<script src="js/vendor/backbone.js"></script>
<script data-main="js/main" src="js/vendor/require.js"></script>
</head>
<body>
<div id="openscreen" class="block"></div>
<div id="roundlist" class="block"></div>
<div id="countdown" class="block"><h1> </h1></div>
<div id="time" class="block"><h1> </h1></div>
<div id="standings" class="block"></div>
<div id="games" class="block"></div>
<div id="results" class="block"></div>
<div id="bracket">
<!-- round 1 //-->
<div class="round1 left spot1 spot"><b>-</b><em>-</em></div>
<div class="round1 left spot2 spot"><b>-</b><em>-</em></div>
<div class="round1 left spot3 spot"><b>-</b><em>-</em></div>
<div class="round1 left spot4 spot"><b>-</b><em>-</em></div>
<div class="round1 right spot1 spot"><b>-</b><em>-</em></div>
<div class="round1 right spot2 spot"><b>-</b><em>-</em></div>
<div class="round1 right spot3 spot"><b>-</b><em>-</em></div>
<div class="round1 right spot4 spot"><b>-</b><em>-</em></div>
<div class="round1 left game1 info">-</div>
<div class="round1 left game2 info">-</div>
<div class="round1 right game3 info">-</div>
<div class="round1 right game4 info">-</div>
<!-- round 2 //-->
<div class="round2 left spot1 spot"><b>-</b><em>-</em></div>
<div class="round2 left spot2 spot"><b>-</b><em>-</em></div>
<div class="round2 left spot3 spot"><b>-</b><em>-</em></div>
<div class="round2 left spot4 spot"><b>-</b><em>-</em></div>
<div class="round2 right spot1 spot"><b>-</b><em>-</em></div>
<div class="round2 right spot2 spot"><b>-</b><em>-</em></div>
<div class="round2 right spot3 spot"><b>-</b><em>-</em></div>
<div class="round2 right spot4 spot"><b>-</b><em>-</em></div>
<div class="round2 left game1 info">-</div>
<div class="round2 right game2 info">-</div>
<div class="round2 left game3 info">-</div>
<div class="round2 right game4 info">-</div>
<!-- round 3 //-->
<div class="round3 left spot1 spot"><b>-</b><em>-</em></div>
<div class="round3 left spot2 spot"><b>-</b><em>-</em></div>
<div class="round3 left spot3 spot"><b>-</b><em>-</em></div>
<div class="round3 left spot4 spot"><b>-</b><em>-</em></div>
<div class="round3 right spot1 spot"><b>-</b><em>-</em></div>
<div class="round3 right spot2 spot"><b>-</b><em>-</em></div>
<div class="round3 right spot3 spot"><b>-</b><em>-</em></div>
<div class="round3 right spot4 spot"><b>-</b><em>-</em></div>
<div class="round3 game1 left info">-</div>
<div class="round3 game2 left info">-</div>
<div class="round3 game3 left info">-</div>
<div class="round3 game4 left info">-</div>
</div>
<div id="loading"></div>
<span id="theme-color" class="hidden">#fff</span>
</body>
</html>