v2.0 first push

This commit is contained in:
2015-08-24 23:03:22 +02:00
parent fceb61029a
commit 6622928299
47 changed files with 3608 additions and 925 deletions

27
masks/calendar.html Executable file
View File

@@ -0,0 +1,27 @@
<div id="calendar">
<table class="calendar_list">
<thead>
<tr>
<th colspan="7">
<a class="calendar_direction" href="#link_prev#">&lt;-</a>&nbsp;
#current_month#
<a class="calendar_direction" href="#link_next#">-&gt;</a>&nbsp;
</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>