25 lines
No EOL
675 B
HTML
25 lines
No EOL
675 B
HTML
<!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> |