-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·69 lines (58 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<!--
Written by Joshua Fabian, [email protected]
-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,500,400italic,500italic,700,700italic,900,900italic" rel="stylesheet" type="text/css">
<script type="text/javascript" src="slick/slick.min.js"></script>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/styleTemp.css"/>
<link rel="stylesheet" type="text/css" href="css/weather-icons.min.css"/>
<title>infoTouch ALPHA</title>
<meta name="description" content="All the information you need, just a touch away.">
<meta name="keywords" content="" />
<meta name="author" content="Joshua Fabian">
<style>
table {
width: 100%;
}
</style>
</head>
<body style="height: 100vh;">
<!-- Heading bar -->
<div id="header" class="normal-colors">
<div id="current-stats"></div>
<div id="light-control" style="display: none" class='light-control-container normal-colors'></div>
<div id="weather-forecast" style="display: none;" class="weather-forecast-container normal-colors"></div>
</div>
<!-- Main section -->
<div id="main" class="rotation-group">
<div id="message-status"><span id="message-status-body"></span><span id="message-status-ago"></span></div>
</div>
<!-- Footer -->
<div id="footer">
<div id="footer-title"></div>
<div id="footer-content-scroll"></div>
</div>
<!-- Load dependencies -->
<script src="config.js"></script>
<script type="text/javascript" src="codebird.js"></script>
<script src="weatherIcons.js"></script>
<script src="severeWeatherUpdates.js"></script>
<script src="weatherForecast.js"></script>
<script src="transitAlerts.js"></script>
<script src="messageStatus.js"></script>
<script src="transitPredictions.js"></script>
<script src="sharedMobilityStatus.js"></script>
<script src="currentStats.js"></script>
<script src="lightControl.js"></script>
<script src="rotation.js"></script>
</body>
</html>