forked from thatswhatyouget/tpp-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
halloffame.html
45 lines (42 loc) · 1.53 KB
/
halloffame.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
<html>
<head>
<title>TPP Hall of Fame</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.7.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.0/react-dom.min.js"></script>
<script src="bin/tpp-data.js"></script>
<script src="transforms/tpp-transforms.js"></script>
<script src="display/tpp-display.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/tpp-progress.css" />
<link rel="stylesheet" href="css/pokemon.css" />
<link rel="icon" href="img/icon.png" type="image/png">
<link rel="shortcut icon" href="img/icon.png" type="image/png">
<meta property="og:title" content="TPP Progress Chart" />
<meta property="og:url" content="http://thatswhatyouget.github.io/tpp-progress/" />
<meta property="og:image" content="http://thatswhatyouget.github.io/tpp-progress/img/icon.png" />
<meta property="og:type" content="website" />
<meta charset="utf-8" />
</head>
<body>
<div class="title">
<h1>Twitch Plays Pokémon</h1>
<div class="subtitle">
<span id="page-title"></span>
<span id="see-also"></span>
</div>
</div>
<div class="title">
<strong id="content-title"></strong>
<div id="credits">
</div>
</div>
<div id="contents">
</div>
<ul class="controls" id="controls">
</ul>
<script>
new TPP.Controllers.HallOfFameController(tppData).Render();
</script>
</body>
</html>