JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix db_get_value after mysql->mysqli upgrade
[wfpl.git] / examples / calendar.html
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5   <title></title>
6   <link rel="stylesheet" href="calendar.css" type="text/css">
7 </head>
8
9 <body>
10   <div class="calendar">
11     <table border="0" cellspacing="0" cellpadding="0" summary="">
12       <tr>
13         <td colspan="7" class="year">~month_year html~</td>
14       </tr>
15       <tr>
16         <th><div class="headerbox">Sun</div></th>
17         <th><div class="headerbox">Mon</div></th>
18         <th><div class="headerbox">Tue</div></th>
19         <th><div class="headerbox">Wed</div></th>
20         <th><div class="headerbox">Thu</div></th>
21         <th><div class="headerbox">Fri</div></th>
22         <th><div class="headerbox">Sat</div></th>
23       </tr>
24       <!--~week {~-->
25       <tr><!--~day {~--><!--~nonday {~-->
26         <td class="nonday"><div class="daybox">&nbsp;</div></td><!--~}~--><!--~empty_day {~-->
27         <td class="empty_day"><div class="daybox">~day_number html~</div></td><!--~}~--><!--~busy_day {~-->
28         <td class="busy_day"><a href="~day_page attr~">~day_number html~</a></td><!--~}~--><!--~empty_weekend {~-->
29         <td class="empty_weekend"><div class="daybox">~day_number html~</div></td><!--~}~--><!--~busy_weekend {~-->
30         <td class="busy_weekend"><a href="~day_page attr~">~day_number html~</a></td><!--~}~--><!--~}~-->
31       </tr>
32       <!--~}~-->
33     </table>
34   </div>
35 </body>
36 </html>