-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 1.58 KB
/
index.html
File metadata and controls
59 lines (54 loc) · 1.58 KB
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
<!DOCTYPE html>
<html>
<head>
<title>TVplot</title>
</head>
<body>
<h1><a href="/">TVplot</a></h1>
<style type="text/css">
body {
width: 70%;
margin: 2em auto 2em;
font-size: 1.25em;
line-height: 1.4em;
text-align: center;
font-family: Helvetica;
color: #515151;
}
a {
color: #588d69;
text-decoration: none;
}
a:hover {
color: #d43728;
}
input[type=text] {
width: 100%;
padding: 0.5em;
text-align: center;
font-size: 1em;
box-sizing: border-box;
}
input[type=submit] {
width: 100%;
box-sizing: border-box;
padding: 0em;
font-size: 1em;
}
</style>
<h3><p>Visualize IMDb episode ratings by season</p></h3>
<p>
<form action="/query/" method="post">
<input type="text" name="query" placeholder="Search by show title or IMDb ID">
<input type="submit" name="submit">
</form>
</p>
<div style="color:red">{{.Error}}</div>
<p>
Have you seen <a href="/tt0386676">The Office</a>, <a href="/tt4574334">Stranger Things</a>, or <a href="/tt0903747">Breaking Bad</a>?
</p>
<p> <div style="font-size: .85em">
Check out the <a href="https://github.com/dchotai/TVplot">source code</a>. Heavily inspired by <a href="http://graphtv.kevinformatics.com/">Graph TV</a>, which isn't under active development.</div>
</p>
</body>
</html>