✨
This commit is contained in:
@@ -4,12 +4,18 @@
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<a class="question" href="/?game_state={{ game_state }}">
|
||||
{% 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>
|
||||
@@ -4,12 +4,18 @@
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<a class="question" href="/?game_state={{ game_state }}">
|
||||
{% 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)}}
|
||||
<!--${{ (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="/">
|
||||
{{answer_text}}
|
||||
</a>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
11
templates/empty.html
Normal file
11
templates/empty.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Jeopardy</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<a class="title" href="/board">
|
||||
Jeopardy
|
||||
</a>
|
||||
</body>
|
||||
</html>
|
||||
@@ -4,6 +4,7 @@
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
{% if empty < 36 %}
|
||||
<table>
|
||||
<tr>
|
||||
{% for cat in categories: %}
|
||||
@@ -22,5 +23,10 @@
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% else %}
|
||||
<a class="title" href="/final">
|
||||
Final Jeopardy
|
||||
</a>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
@@ -4,6 +4,7 @@
|
||||
<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>
|
||||
@@ -11,5 +12,10 @@
|
||||
${{(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="/final_answer">
|
||||
<img src="/static/images/final.png">
|
||||
</a>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
@@ -4,6 +4,7 @@
|
||||
<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>
|
||||
@@ -11,5 +12,10 @@
|
||||
${{(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="/final_answer">
|
||||
{{question_text}}
|
||||
</a>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user