@@ -14,7 +14,7 @@
</head>
<body>
{% if items %}
- <h2>Today's to-do List</h2>
+ <h4>Today's to-do List</h4>
<ul>
{% for item in items %}
<li style="text-decoration: {{ 'line-through' if item.crossed == 'yes' else 'none' }}; font-weight: bold; font-size: 18px;">
@@ -22,6 +22,8 @@
</li>
{% endfor %}
</ul>
+ {% else %}
+ <h4>Nothing on the to-list yet</h4>
{% endif %}
</body>
</html>