40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Dashboard</title>
|
|
<link rel="stylesheet" href="static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="dashboard">
|
|
<div class="panel top">
|
|
<div class="subpanel">
|
|
{# <img class="weather-icon" src="sun.gif"></img>#}
|
|
</div>
|
|
<div class="subpanel" style="font-size: 60px;font-weight: bold;vertical-align:top; text-align:right;">
|
|
{{ today.strftime('%a') }}<br>
|
|
{{ today.strftime('%b %-d') }}<br>
|
|
{{ today.strftime('%Y') }}<br>
|
|
</div>
|
|
</div>
|
|
<div class="panel bottom week">
|
|
|
|
{% for day, event in days %}
|
|
<div class="day">
|
|
<div id="dotw-1" class="day-title">
|
|
{{ day.strftime('%A') }}
|
|
</div>
|
|
{% if event %}
|
|
<div class="event">
|
|
{{ event.summary.value }}<br>
|
|
{% if event.dtstart.value.strftime('%H') != "00" %}
|
|
{{ event.dtstart.value.strftime('%-I:%M %p') }}<br>{{ event.dtend.value.strftime('%-I:%M %p') }}
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|