read only

This commit is contained in:
Khaïs COLIN 2025-10-18 20:54:23 +02:00
parent 7cc91285a0
commit d4db9155a6
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
7 changed files with 168 additions and 4 deletions

21
templates/index.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Task Counter</title>
</head>
<body>
<header>
<h1>Task Counter!</h1>
</header>
<main>
<ul>
{% for task in tasks %}
<li>{{ task.name }}</li>
{% endfor %}
</ul>
</main>
</body>
</html>