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

20 lines
483 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="/board?game_state={{ game_state }}">
{{answer_text}}
</a>
<div class="money">
${{(question//6+1)*((1+empty)*7-2)}}
</div>
{% else %}
<a class="question" href="/">
{{answer_text}}
</a>
{% endif %}
</body>
</html>