abgame/templates/index.html

25 lines
858 B
HTML
Raw Normal View History

2023-06-02 14:31:53 +02:00
<!DOCTYPE html>
<html lang="de">
2023-06-02 10:11:06 +02:00
<head>
<title>{{ title }}</title>
2023-06-02 14:31:53 +02:00
<link rel="stylesheet" type="text/css" href="/css/ab.css">
<meta name="viewport" content="width=device-width,initial-scale=1">
2023-06-02 15:05:24 +02:00
<meta name="robots" content="noindex, nofollow">
2023-06-02 10:11:06 +02:00
</head>
<body>
<div id="content">
<div id="header">{{ title }}</div>
{% for question in content %}
<div class="ab">
2023-06-02 10:24:42 +02:00
<div class="a">A) {{ question['A'] }}</div>
2023-06-02 10:11:06 +02:00
<div class="separator">{{ separator }}</div>
2023-06-02 10:24:42 +02:00
<div class="b">B) {{ question['B'] }}</div>
2023-06-02 10:11:06 +02:00
</div>
{% endfor %}
2023-06-02 15:25:02 +02:00
<div id="footer">
<div id="questions">Es gibt derzeit {{ num_lines }} Fragen.</div>
</div>
2023-06-02 10:11:06 +02:00
</div>
</body>
</html>