forked from michalbe/tv-series
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (69 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="data/data.js"></script>
<script src="data/proposals.js"></script>
<script src="tools/render.js"></script>
<title>tv-series</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<a href="https://github.com/michalbe/tv-series"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_green_007200.png" alt="Fork me on GitHub"></a>
<table id="series">
<tr>
<th colspan=5 style="text-align:center">
My List
</th>
</tr>
<tr>
<th>
Title
</th>
<th>
Episodes
</th>
<th>
Episode Length
</th>
<th>
Total Length
</th>
<th>
Still watching?
</th>
</tr>
</table>
<table id="to-consider">
<tr>
<th colspan=6 style="text-align:center">
Shows to consider
</th>
</tr>
<tr>
<th>
Title
</th>
<th>
Episodes
</th>
<th>
Episode Length
</th>
<th>
Total Length
</th>
<th>
Ongoing?
</th>
<th>
Votes
</th>
</tr>
</table>
<script>
Renderer(series, document.getElementById('series'));
Renderer(toConsider, document.getElementById('to-consider'));
</script>
</body>
</html>