This commit is contained in:
2023-08-01 18:59:55 +02:00
commit 68152c1b67
23 changed files with 294 additions and 0 deletions

14
templates/question.html Normal file
View File

@@ -0,0 +1,14 @@
<html>
<head>
<title>Jeopardy</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<a class="question" href="/answer?question={{ question }}&game_state={{ game_state }}">
{{question_text}}
</a>
<div class="money">
${{ (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>
</body>
</html>