1
0
mirror of synced 2025-12-28 07:23:24 +00:00

design + calendar

This commit is contained in:
Valentin
2023-12-22 15:57:13 +01:00
parent 4e3df085e2
commit 9d185f71c3
8 changed files with 149 additions and 75 deletions

17
templates/events.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Events</title>
</head>
<body>
<h1>API Events</h1>
<ul>
{% for event in events %}
<li>{{ event }}</li>
{% endfor %}
</ul>
</body>
</html>