2024-12-16

This commit is contained in:
2024-12-16 16:45:24 -06:00
parent 82d0389db4
commit d8d9e3bbab
4 changed files with 57 additions and 47 deletions

View File

@@ -0,0 +1,15 @@
<div class="day">
<div class="day-title{% if day == today.date()%} current-day{% endif %}">
{{ day.strftime('%a %-d') }}
</div>
<div class="events">
{% for event in events %}
<div class="event">
{{ event.summary }}<br>
{% if not event.is_all_day %}
<span class="daterange">{{ event.range_str }}</span>
{% endif %}
</div>
{% endfor %}
</div>
</div>