abgame/templates/index.html

21 lines
670 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 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 %}
</div>
</body>
</html>