summaryrefslogtreecommitdiffstats
path: root/templates/calendar.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/calendar.tpl')
-rw-r--r--templates/calendar.tpl28
1 files changed, 0 insertions, 28 deletions
diff --git a/templates/calendar.tpl b/templates/calendar.tpl
deleted file mode 100644
index 1f52732..0000000
--- a/templates/calendar.tpl
+++ /dev/null
@@ -1,28 +0,0 @@
-<table class="calendar">
- <tr>
- <td><a href="{$prev_month}" class="prevMonth">&lt;&lt;</a></td>
- <td colspan="5">
- {$current_month}
- </td>
- <td><a href="{$next_month}" class="nextMonth">&gt;&gt;</a></td>
- </tr>
- <tr>
- <td>M</td>
- <td>T</td>
- <td>W</td>
- <td>T</td>
- <td>F</td>
- <td>S</td>
- <td>S</td>
- </tr>
- <!-- matrix -->
- {section name="row" loop=$rows step=1}
- {section name="col" loop=8 step=1}
- {if $matrix[row][col] }
- {$matrix[row][col]}
- {/if}
- {/section}
- {/section}
- <!-- /matrix -->
-</table>
-