-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (56 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Smartmirror</title>
<!--
Styles
-->
<link rel="stylesheet" href="weather/weather-widget.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.1.0/fullcalendar.min.css">
<link rel="stylesheet" href="semantic/semantic.min.css">
<link rel="stylesheet" href="style.css">
<!--
Scripts
-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js"></script>
<!-- <script src="crossdomain.js"></script>-->
<script src="params.js"></script>
<script src="weather/weather-widget.js"></script>
<script src="semantic/semantic.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.1.0/fullcalendar.min.js"></script>
<script src="calendar/gcal.min.js"></script>
<script src="calendar/locale-all.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="clockhead">
<div id="clockwrap">
<h1 id="date"></h1>
<h1 id="clock"></h1>
<div style="clear:both;"></div>
</div>
</div>
<div id="wrap" class="ui raised segment">
<div id="weather"></div>
<div id="kvb">
<h2 id="header" >Abfahrten von Fuldaerstr.</h2>
<!-- <span id="notif"></span> -->
<table class="ui striped table">
<thead>
<tr>
<th>Linie</th>
<th>Richtung</th>
<th>Abfahrt</th>
</tr>
</thead>
<tbody id="tbody"></tbody>
</table>
</div>
</div>
<div id="calendarwrap">
<div id='calendar' class="ui raised segment"></div>
</div>
</body>
</html>