yunzi7's picture
pr #7 (#7)
aecb384 verified
raw
history blame contribute delete
716 Bytes
{% 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 %}