-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
147 lines (74 loc) · 3.04 KB
/
schedule.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
<!DOCTYPE html>
<html>
<head>
<title>Your TV Schedule - On Your Telly</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css" type="text/css">
<link rel="stylesheet" href="./css/schedule.css" type="text/css">
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<script src="./js/script.js" type="text/javascript"></script>
<script src="./js/schedule.js" type="text/javascript"></script>
<!-- Matomo -->
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//www.calumchilds.com/stats/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://calumchilds.com/onyourtelly">
<img src="https://calumchilds.com/onyourtelly/imgs/on-your-telly-logo.png" width="200" alt="On Your Telly">
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" onclick="openNavBar()" id="navbarBurger">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navigationBar">
<div class="navbar-start">
<a class="navbar-item" href="search.html">
Search
</a>
<a class="navbar-item oyt-active" href="schedule.html">
Schedule
</a>
<a class="navbar-item" href="faq.html">
FAQ
</a>
</div>
</div>
</nav>
<h1 class="main-heading">Find out what's on your telly today.</h1>
<div class="search-bar">
<div class="select is-large">
<select id="option" onkeyup="searchStuff()">
<option value="CA">Canada</option>
<option value="GB" selected>United Kingdom</option>
<option value="US">United States</option>
</select>
</div>
<input type="submit" onclick="searchStuff()" value="Get Schedule" id="submit-show" class="button is-large">
</div>
<a href="search.html"><h2 align="center" style="font-family:'Inter';">Or search TV shows and people instead.</h2></a>
<ul id="results">
</ul>
<div id="more-results">
</div>
</body>
</html>