This commit is contained in:
2024-09-10 11:08:36 +02:00
parent 8ee14b3984
commit d91c5137c7
9 changed files with 100 additions and 8 deletions

View File

@@ -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>