21 lines
785 B
HTML
21 lines
785 B
HTML
<html>
|
|
<head>
|
|
<title>Jeopardy</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 }}">
|
|
<img src="/static/images/{{question}}.png">
|
|
</a>
|
|
<div class="money">
|
|
${{(question//6+1)*((1+empty)*7-2)}}
|
|
<!--${{ (question//6+1) ** 4 + 2*((question//6+1) ** 3) + 7*((question//6+1)**2) + (question//6+1) * 33 + (((question%6)+2)%3)**2 + (question%6) * 87 - ((question%6)+3)**2 - ((question%6)+2)**3 + (question//6+1)*(((question%6) + 2)%3) + 24 }}-->
|
|
</div>
|
|
{% else %}
|
|
<a class="question" href="/">
|
|
<img src="/static/images/final.png">
|
|
</a>
|
|
{% endif %}
|
|
</body>
|
|
</html> |