Spaces:
Runtime error
Runtime error
{% extends 'base.html' %} | |
{% block content %} | |
<div class="quiz-container"> | |
<h1 id=>๋ค์์ ์ฃผ์ ๋ก ์๊ฐ์ ๊ณต์ ํด๋ณด์ธ์!</h1> | |
<p id="instruction" style="color: #262a2a;">{{ topic }}</p> <!-- ์๋ฒ์์ ์ ๋ฌํ ์ฃผ์ ๋ฅผ ๋ฐ๋ก ํ์ --> | |
<br> | |
</div> | |
<div class="character-container" style="margin-top: 30px; text-align: right;"> | |
<img src="{{ url_for('static', filename='character.png') }}" alt="character" width="200"> | |
</div> | |
<script> | |
// 20์ด๋ง๋ค ํ์ด์ง ์๋ก๊ณ ์นจ | |
setInterval(function() { | |
window.location.reload(); // ํ์ด์ง๋ฅผ ์๋ก๊ณ ์นจํ์ฌ ์๋ก์ด ์ฃผ์ ๋ฅผ ์๋ฒ์์ ๊ฐ์ ธ์ด | |
}, 20000); | |
</script> | |
{% endblock %} | |