abgame/templates/index.html

32 lines
1.5 KiB
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">
2023-06-02 16:46:45 +02:00
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16x16.png') }}">
<link rel="manifest" href="{{ url_for('static', filename='site.webmanifest') }}">
<link rel="mask-icon" href="{{ url_for('static', filename='safari-pinned-tab.svg') }}" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
2023-06-02 14:31:53 +02:00
<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>