abgame/templates/index.html

19 lines
564 B
HTML
Raw Normal View History

2023-06-02 10:11:06 +02:00
<html>
<head>
<title>{{ title }}</title>
<link rel="stylesheet" type="text/css" href="/css/ab.css" />
</head>
<body>
<div id="content">
<div id="header">{{ title }}</div>
{% for question in content %}
<div class="ab">
<div class="a">{{ question['A'] }}</div>
<div class="separator">{{ separator }}</div>
<div class="b">{{ question['B'] }}</div>
</div>
{% endfor %}
</div>
</body>
</html>