File size: 716 Bytes
53ce00a
c90fe2b
53ce00a
a40292e
 
c90fe2b
a40292e
aecb384
 
a40292e
aecb384
 
 
53ce00a
5e60e06
 
 
 
53ce00a
 
0c2babc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% 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 %}