abgame/templates/index.html

25 lines
858 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<title>{{ title }}</title>
<link rel="stylesheet" type="text/css" href="/css/ab.css">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="robots" content="noindex, nofollow">
</head>
<body>
<div id="content">
<div id="header">{{ title }}</div>
{% for question in content %}
<div class="ab">
<div class="a">A) {{ question['A'] }}</div>
<div class="separator">{{ separator }}</div>
<div class="b">B) {{ question['B'] }}</div>
</div>
{% endfor %}
<div id="footer">
<div id="questions">Es gibt derzeit {{ num_lines }} Fragen.</div>
</div>
</div>
</body>
</html>