yunzi7's picture
pr #5 (#5)
5e60e06 verified
raw
history blame
375 Bytes
{% extends 'base.html' %}
{% block content %}
<h1 id="topic">{{ topic }}</h1> <!-- ์„œ๋ฒ„์—์„œ ์ „๋‹ฌํ•œ ์ฃผ์ œ๋ฅผ ๋ฐ”๋กœ ํ‘œ์‹œ -->
<script>
// 20์ดˆ๋งˆ๋‹ค ํŽ˜์ด์ง€ ์ƒˆ๋กœ๊ณ ์นจ
setInterval(function() {
window.location.reload(); // ํŽ˜์ด์ง€๋ฅผ ์ƒˆ๋กœ๊ณ ์นจํ•˜์—ฌ ์ƒˆ๋กœ์šด ์ฃผ์ œ๋ฅผ ์„œ๋ฒ„์—์„œ ๊ฐ€์ ธ์˜ด
}, 20000);
</script>
{% endblock %}