vstopic.tpl 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <!-- 토론장 -->
  2. % rebase('base.tpl')
  3. <div id="tool">
  4. <nav class="menu">
  5. <a class="menu-item selected" href="#" onclick="return false">
  6. {{sub}}
  7. </a>
  8. <a class="menu-item" href="/topic/{{page}}">토론 목록</a>
  9. </nav>
  10. </div>
  11. <h1 class="title">
  12. {{title}}
  13. <sub> ({{sub}})</sub>
  14. </a>
  15. </h1>
  16. <h2 style="margin-top: -15px;">{{toron}}</h2>
  17. <br>
  18. {{!rows}}
  19. <a id="reload" href="javascript:void(0);" onclick="location.href.endsWith('#reload') ? location.reload(true) : location.href = '#reload'"><i aria-hidden="true" class="fa fa-refresh"></i></a>
  20. % if(not ban == 1):
  21. <form id="usrform" style="{{style}}" method="POST" action="/topic/{{page}}/sub/{{suburl}}">
  22. <br>
  23. <textarea rows="10" cols="100" name="content" form="usrform"></textarea>
  24. <br>
  25. <br>
  26. <button class="btn btn-primary" type="submit">전송</button>
  27. </form>
  28. % if(login == 0 and style == ''):
  29. <span>비 로그인 상태입니다. 비 로그인으로 작업 시 아이피가 토론에 기록됩니다.</span>
  30. % end
  31. % end