read only
This commit is contained in:
parent
7cc91285a0
commit
d4db9155a6
7 changed files with 168 additions and 4 deletions
21
templates/index.html
Normal file
21
templates/index.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue