Files
jeopardy/templates/question.html
2025-12-03 10:15:45 +01:00

20 lines
524 B
HTML

<html>
<head>
<title>Geopardy</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
{% if game_state != "." %}
<a class="question" href="/answer?question={{ question }}&game_state={{ game_state }}">
{{question_text}}
</a>
<div class="money">
${{(question//6+1)*((1+empty)*7-2)}}
</div>
{% else %}
<a class="question" href="/final_answer">
{{question_text}}
</a>
{% endif %}
</body>
</html>