-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdecoded.html
52 lines (49 loc) · 1.16 KB
/
decoded.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="./client.js"></script>
<style>
#contributors img {
height: 30px;
}
#contributors_container {
display: none;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Decoded Episode 2</h1>
</div>
<div class="col-md-6">
<table class="table" id="repos">
<thead>
<tr>
<th>Favorite</th>
<th>Name</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="contributors_container" class="col-md-6">
<h2 id="contributors_title">Contributors for <span></span></h2>
<table class="table" id="contributors">
<thead>
<tr>
<th></th>
<th>Contributor</th>
<th>Contributions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</body>
</html>