🎉 initial commit
This commit is contained in:
commit
9f58e25f10
14 changed files with 459 additions and 0 deletions
25
templates/base.html
Normal file
25
templates/base.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue