20 lines
569 B
HTML
20 lines
569 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 }}">
|
|
<img src="/static/images/{{question}}.png">
|
|
</a>
|
|
<div class="money">
|
|
${{(question//6+1)*((1+empty)*7-2)}}
|
|
</div>
|
|
{% else %}
|
|
<a class="question" href="/final_answer">
|
|
<img src="/static/images/final.png">
|
|
</a>
|
|
{% endif %}
|
|
</body>
|
|
</html> |