blob: 13ee0e5b8733be20e3cab90ecfcc16d895d42dba (
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
|
<!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/main.css" rel="stylesheet">
<link href="/styles/week.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="clock">
<span class="current-week"></span>
<span class="clock-date"></span>
<span class="clock-time"></span>
</div>
</div>
<div id="weeks">
<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>
<script type="text/javascript">
<!-- clock_init(); -->
calendar_init();
</script>
</body>
</html>
|