1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 00:18:31 +00:00
FrankerFaceZ/socketserver/cmd/statsweb/webroot/calendar.hbs
2016-01-17 12:53:15 -08:00

18 lines
No EOL
341 B
Handlebars

<table class="calendar">
<thead>
<th>Sunday</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</thead>
<tbody>
{{range .Weeks}}
{{range .Days}}
{{template "cal_entry"}}
{{end}}
{{end}}
</tbody>
</table>