27 lines
710 B
HTML
Executable File
27 lines
710 B
HTML
Executable File
<div id="calendar">
|
|
<table class="calendar_list">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="7">
|
|
<a class="calendar_direction" href="#link_prev#"><-</a>
|
|
#current_month#
|
|
<a class="calendar_direction" href="#link_next#">-></a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="round">
|
|
<tr>
|
|
<!-- [PART] TITLE [START] -->
|
|
<td>#day_name#</td>
|
|
<!-- [PART] TITLE [END] -->
|
|
</tr>
|
|
<!-- [PART] WEEK [START] -->
|
|
<tr class="calendar_items">
|
|
<!-- [PART] DAY [START] -->
|
|
<td class="item_#item_class#" title="#item_link_title#" onclick="goTo('#item_link#');">#item_day#</td>
|
|
<!-- [PART] DAY [END] -->
|
|
</tr>
|
|
<!-- [PART] WEEK [END] -->
|
|
</tbody>
|
|
</table>
|
|
</div> |