zeroclickinfo-goodies/share/goodie/calendar_today/content.handlebars

41 lines
1.1 KiB
Handlebars
Raw Normal View History

2015-12-26 02:50:28 -08:00
<table class="calendar">
<tr>
<th colspan="7">
<span class="circle t_left">
<a href="/?q=calendar {{previous_month}}">
2015-12-26 02:50:28 -08:00
<span class="ddgsi ddgsi-arrow-left"></span>
</a>
</span>
<span class="calendar__header">
<b>{{month_year}}</b>
2015-12-26 02:50:28 -08:00
</span>
<span class="circle t_right">
<a href="/?q=calendar {{next_month}}">
2015-12-26 02:50:28 -08:00
<span class="ddgsi ddgsi-arrow-right"></span>
</a>
</span>
</th>
</tr>
<tr>
<th>S</th>
<th>M</th>
<th>T</th>
<th>W</th>
<th>T</th>
<th>F</th>
<th>S</th>
</tr>
2015-12-26 04:19:58 -08:00
{{#each weeks}}
<tr>
{{#each this}}
2015-12-26 05:52:06 -08:00
<td>
{{#unless today}}
{{../day}}
{{else}}
<span class="calendar__today circle">{{../day}}</span>
{{/unless}}
</td>
2015-12-26 04:19:58 -08:00
{{/each}}
</tr>
{{/each}}
2015-12-26 02:50:28 -08:00
</table>