-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (69 loc) · 3.05 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-dark.css" media="screen">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<title>TV Guide by etaiklein</title>
</head>
<body>
<header>
<div class="container">
<h1 class="blur">TV Guide</h1>
<h2 class="blur">Add your favorite TV Shows to your Google Calendar</h2>
</div>
</header>
<div class="container flexible">
<div id="main_content">
<section>
<div class="instructions blur">
1) enter your wiki
</div>
<input class="tv_guide_input" id="tv_guide_input" placeholder="https://en.wikipedia.org/wiki/List_of_Steven_Universe_episodes" value="https://en.wikipedia.org/wiki/List_of_Steven_Universe_episodes">
</input>
<input class="tv_guide_submit" id="tv_guide_submit" type="submit" value="Submit">
<div id="results" class="blur hidden">
your tv-guide(s):
</div>
</section>
<section>
<div id="google_instructions" class="instructions blur">
2) add to google calendar
<ol>
<li>go to <a href="https://calendar.google.com">google calendar</a> (web view)</li>
<li>in the left column, click on the add link in the Other Calendars section.</li>
<li>from the menu select, add by URL.</li>
<li>enter the URL in the dialog box then click Add Calendar.</li>
<li>see <a href="http://visihow.com/Use_webcal_url_to_add_a_calendar_to_google_calendar"> visual instructions</a> for more details</li>
</ol>
</div>
</section>
<section>
<div class="instructions blur">
3) voila, nightly calendar updates!
</div>
</section>
</div>
<div class="sidebar" id="secondary_content">
<div class="instructions blur">
Recent
<div id="recent">
</div>
</div>
</div>
</div>
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">TV Guide maintained by <a href="https://github.com/etaiklein">@etaiklein</a>.
View on <a href="https://github.com/etaiklein/tv-guide">Github</a>.
Problems? Improvements? Shoot me an <a href="mailto:[email protected]">email</a></p>
</footer>
</div>
<script type="text/javascript" src="javascripts/main.js"></script>
</body>
</html>