Browse Source

Delete 'list.html'

oops
deadtom 1 day ago
parent
commit
09a4196396
1 changed files with 0 additions and 25 deletions
  1. 0 25
      list.html

+ 0 - 25
list.html

@@ -1,25 +0,0 @@
- 
-<!DOCTYPE html>
-<html lang="en">
-<head>
-    <meta charset="UTF-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Today's to-do List</title>
-    <style>
-        body {
-            background-color: transparent;
-            color: black;
-        }
-    </style>
-</head>
-<body>
-    <h1>Today's to-do List</h1>
-    <ul>
-        {% for item in items %}
-            <li style="text-decoration: {{ 'line-through' if item.checked else 'none' }};">
-                {{ item.name }}
-            </li>
-        {% endfor %}
-    </ul>
-</body>
-</html>