blob: 4a9241c79ab06104ad65b82e04f9a534a84cef75 (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Radio Helsinki - Automation Week Plan</title>
<meta charset="utf-8">
<meta name="author" content="Christian Pointner <equinox@helsinki.at>">
<link rel="shortcut icon" href="/img/favicon.ico" />
<link href="/javascript/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/styles/common.css" rel="stylesheet">
<link href="/styles/clock.css" rel="stylesheet">
<link href="/styles/weeks.css" rel="stylesheet">
<script src="/javascript/jquery/jquery.min.js"></script>
<script src="/js/utils.js"></script>
<script src="/js/clock.js"></script>
<script src="/js/calendar.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-4 col-md-offset-1">
<div id="title">
<h1>Rivendell Wochenplan</h1>
</div>
<div id="clock">
<h2>aktuelle Woche:</h2>
<span class="current-week"></span>
<span class="clock-date"></span>
<span class="clock-time"></span>
</div>
<div id="buttons">
<div class="btn-group btn-group-lg" role="group">
<button type="button" class="btn btn-default" id="btn-earlier"><span class="glyphicon glyphicon-minus"></span></button>
<button type="button" class="btn btn-default" id="btn-today">Heute</button>
<button type="button" class="btn btn-default" id="btn-later"><span class="glyphicon glyphicon-plus"></span></button>
</div>
</div>
</div>
<div class="col-md-5 col-md-offset-1">
<table id="calendar">
<tr>
<th></th>
<th></th>
<th>Mo</th>
<th>Di</th>
<th>Mi</th>
<th>Do</th>
<th>Fr</th>
<th>Sa</th>
<th>So</th>
<th></th>
</tr>
</table>
</div>
</div>
</div>
<script type="text/javascript">
clock_init();
calendar_init();
</script>
</body>
</html>
|