-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (49 loc) · 2.47 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
<!doctype html>
<html ng-app="Leaderboard" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Leaderboard for #SogetiBattle</title>
<meta name="viewport" content="width=device-width">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta name="viewport" content="width=device-width, user-scalable=0" />
<script src="http://code.jquery.com/jquery-1.12.0.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular-animate.min.js" type="text/javascript"></script>
<script src="js/Leaderboard.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/Leaderboard.css">
</head>
<body>
<div id='Leaderboard' ng-controller='LeaderboardController as LeaderboardCtrl'>
<header>
<h1>Sogeti Applied Innovation Battle</h1>
<h2>Leaderboard for #SogetiBattle</h2>
</header>
<div class="inline-block-center">
<a href='https://www.facebook.com/AppliedInnovationBattle'><div class="Social Facebook"></div></a>
<a href='https://twitter.com/#sogetibattle'><div class="Social Twitter"></div></a>
</br>
<div class="Team" ng-repeat="Team in Teams | orderBy:random | orderBy:'Points':true" ng-show="!Team.out">
<a href='{{Team.url}}'>{{Team.name}}
</a><br>
<span ng-repeat="(Key, Value) in Team.Badges" title="{{Key}}">
<div class="Badge {{Value}}" ng-show="Value==='Bronze' || Value==='Silver' || Value==='Gold' || Value==='Platinum' || Value==='Diamond'">
{{Value}} - {{Key}}
</div>
<div class="Badge Gray" ng-show="Value!=='Bronze' && Value!=='Silver' && Value!=='Gold' && Value!=='Platinum' && Value!=='Diamond'">
Gain - {{Key}}
</div>
</span>
<div>
<a href='{{Team.url}}' ng-show="Team.url!=''">
<div class="Mini Facebook" ></div>
</a>
</div>
</div>
</div>
</div><!-- Leaderboard -->
<footer>
<p>This project is maintained by <a href="https://github.com/ArndBrugman">Arnd Brugman</a> and Hosted on GitHub Pages</p>
</footer>
</body>
</html>