forked from antnks/e-ink-calendar-esp32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.shtml
48 lines (48 loc) · 1.48 KB
/
template.shtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>Calendar</title>
<link rel="stylesheet" type="text/css" href="../style.css">
</head>
<body>
<div class="updated">
<span>Updated: ${UPDATED}</span>
</div>
<table class="root">
<tr class="top">
<td>
<table class="calendar-header">
<tr>
<td class="calendar-header-today">
<div class="badge">
<div class="badge-day">${TODAY_DAY}</div>
<div class="badge-month">${TODAY_MONTH}</div>
<div class="badge-year hide">${TODAY_YEAR}</div>
</div>
</td>
<td class="calendar-header-upcoming">
<div class="upcoming-container">
<div class="upcoming full-day">${TODAY_FULL_DAY_EVENTS}</div>
<div class="upcoming">${TODAY_EVENTS}</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class="bottom">
<td>
<div class="calendar-table grid">
<div class="day-name">${DAY1}</div>
<div class="day-name">${DAY2}</div>
<div class="day-name">${DAY3}</div>
<div class="day-name">${DAY4}</div>
<div class="day-name">${DAY5}</div>
<div class="day-name weekend">${DAY6}</div>
<div class="day-name weekend">${DAY7}</div>
${DAY_ROW}
</div>
</td>
</tr>
</table>
</body>
</html>