15 lines
449 B
HTML
15 lines
449 B
HTML
<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> |