diff options
Diffstat (limited to 'www/weeks.html')
-rw-r--r-- | www/weeks.html | 55 |
1 files changed, 33 insertions, 22 deletions
diff --git a/www/weeks.html b/www/weeks.html index 13ee0e5..42c8e29 100644 --- a/www/weeks.html +++ b/www/weeks.html @@ -15,33 +15,44 @@ </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 id="leftcol"> + <div id="title"> + <h1>Rivendell Wochenplan</h1> + </div> - </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="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 id="buttons"> + <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>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(); --> + clock_init(); calendar_init(); </script> |