32 lines
1.5 KiB
HTML
32 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/ab.css">
|
|
<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">
|
|
<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>
|