| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="refresh" content="10">
- <title>Today's to-do List</title>
- <style>
- body {
- background-color: transparent;
- color: #CBD2D9;
- }
- </style>
- </head>
- <body>
- {% if items %}
- <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;">
- {{ item.name }}
- </li>
- {% endfor %}
- </ul>
- {% else %}
- <h4>Nothing on the to-list yet</h4>
- {% endif %}
- </body>
- </html>
|