🎉 initial commit

This commit is contained in:
Marc Koch 2024-12-03 11:02:03 +01:00
commit 9f58e25f10
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9
14 changed files with 459 additions and 0 deletions

25
templates/base.html Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BüzE Menü</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<div class="menu">
{% if lines %}
{% for line in lines %}
{% if loop.index == 1 %}<h1>{{ line }}</h1>
{% elif line == '' %}<br>
{% else %}<p>{{ line }}</p>
{% endif %}
{% endfor %}
{% else %}
<p>Leider konnte kein Menü gefunden werden.</p>
{% endif %}
</div>
<img src="{{ img }}" alt="{{ text }}">
</div>
</body>
</html>