-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
91 lines (71 loc) · 3.01 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
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="asset/favicon.ico" />
<link rel="apple-touch-icon" href="asset/logo.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Bell Schedule</title>
<style>
.blink {animation: blink 0.5s linear infinite;}
@keyframes blink {50% {opacity: 0;}}
</style>
<script>
var match = RegExp("[?&]old=([^&]*)").exec(window.location.search);
var old = match && decodeURIComponent(match[1].replace(/\+/g, ' '));
if (!old) window.location.replace("https://bell.harker.org/?utm_source=v1&utm_medium=redirect");
</script>
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/script.min.js"></script>
<script type="text/javascript" src="scripts/doge.js"></script>
<script>
var color = false;
function toggleColor(){
color = !color;
updateSchedule(displayDate, true);
}
</script>
<link rel="stylesheet" type="text/css" href="style.css" />
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-136862177-6', 'auto');
if (window.localStorage) {
ga('set', 'dimension1', localStorage.getItem('period1') != '' || localStorage.getItem('period2') != '' || localStorage.getItem('period3') != '');
ga('set', 'dimension2', localStorage.getItem('color'));
ga('set', 'dimension3', localStorage.getItem('enableDayView'));
}
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
</head>
<body>
<div id="header" class="noHighlight">
<h1>
<span id="leftArrow" title="Last Week">‹</span>
<span id="rightArrow" title="Next Week">›</span>
<span id="title">Bell Schedule</span>
</h1>
<div id="warning"></div>
</div>
<!--<div class="noHighlight" id="currWeekWrapper" class="noHighlight"><h2>
<button class="noHighlight" type="button" id="currWeek" title="Go to Current Week" onclick="goCurrWeek()">Current Week</button>
</h2></div>-->
<!--<input type="button" value="Current Week" id = "currWeek" title = "Current Week" onclick="goCurrWeek()">-->
<div id="container">
<table id="schedule"></table>
<div style="font-size: 10px; font-family: Roboto; padding-top: 3px;">Made with <> by <a href="https://dev.harker.org" target="_blank" style="color: black;">HarkerDev</a></div>
</div>
<div id="refresh" class="noHighlight" title="Update Schedule">↻</div><!--⇩-->
<div id="version"><a href="https://github.com/HarkerDev/bellschedule/releases" title="Changelog">V1.6.0</a></div>
<div id="options">
<div id="optionsArrow" class="noHighlight">↖</div>
<h2 id="optionsTitle">Options</h2>
<table id="optionsContent"></table>
<div id="repo">
<a href="https://github.com/HarkerDev/bellschedule" target="_blank" title="GitHub repository">GitHub repository</a>
</div>
</div>
<script src="https://qbw8rkkv7x0h.statuspage.io/embed/script.js"></script>
</body>
</html>