blob: 53e2dbf2bbe0d2a657076d079f233f5176db9b6c (
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
|
<!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="/styles/common.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 id="container">
<div id="leftcol">
<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>
<input id="btn-today" type="button" value="Heute"></input>
</div>
<input id="btn-earlier" type="button" value="Früher"></input>
<input id="btn-later" type="button" value="Später"></input>
</div>
</div>
<div id="rightcol">
<table id="calendar">
<tr>
<th></th>
<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>
<script type="text/javascript">
clock_init();
calendar_init();
</script>
</body>
</html>
|