index.html 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. <html>
  2. <head>
  3. <title>{{title}}</title>
  4. <link rel="stylesheet" href="{{url_for('static', filename='primer.css')}}">
  5. <link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
  6. <link rel="stylesheet" href="{{url_for('static', filename='font-awesome/css/font-awesome.min.css')}}">
  7. <script type="text/x-mathjax-config">
  8. MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
  9. </script>
  10. <script type="text/javascript" async
  11. src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML">
  12. </script>
  13. <link rel="shortcut icon" href="{{url_for('static', filename='images/on.ico')}}">
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. </head>
  16. <body>
  17. <br>
  18. <div class="one-fifth column">
  19. <div id="top">
  20. <a href="/" id="logo">{{logo}}</a>
  21. <div>
  22. <a href="/recentchanges" id="RecentChanges"><i class="fa fa-refresh" aria-hidden="true"></i><span id="is_mobile">최근 변경</span></a>
  23. <a href="/recentdiscuss" id="RecentChanges"><i class="fa fa-comment" aria-hidden="true"></i><span id="is_mobile">최근 토론</span></a>
  24. <a href="/random" id="log"><i class="fa fa-random" aria-hidden="true"></i></a>
  25. <a href="/user" id="log"><i class="fa fa-user" aria-hidden="true"></i></a>
  26. <a href="/other" id="log"><i class="fa fa-cogs" aria-hidden="true"></i></a>
  27. </div>
  28. <form method="POST" action="/search" id="search">
  29. <div class="input-group">
  30. <input class="form-control" name="search" type="text">
  31. <span class="input-group-button"><button class="btn"><i class="fa fa-search" aria-hidden="true"></i></button></span>
  32. </div>
  33. </form>
  34. </div>
  35. </div>
  36. <div class="scroll-buttons">
  37. <a class="scroll-toc" href="#toc"><i class="fa fa-list-alt" aria-hidden="true"></i></a>
  38. <a class="scroll-button" href="#top" id="left"><i class="fa fa-arrow-up" aria-hidden="true"></i></a>
  39. <a class="scroll-bottom" href="#powered" id="right"><i class="fa fa-arrow-down" aria-hidden="true"></i></a>
  40. </div>
  41. <div id="all_contect">
  42. <div id="left_bar">
  43. <a href="#">맨 위로</a>
  44. <br>
  45. <br>
  46. {% autoescape false %}
  47. {{left}}
  48. {% endautoescape %}
  49. </div>
  50. <div class="four-fifths column">
  51. {% if tn == 1 %}
  52. <div id="tool">
  53. <nav class="menu">
  54. <a class="menu-item selected" href="#" onclick="return false">문서</a>
  55. <a class="menu-item" href="/edit/{{page}}">수정</a>
  56. <a class="menu-item" id="{{topic}}" href="/topic/{{page}}">토론</a>
  57. <a class="menu-item" href="/delete/{{page}}">삭제</a>
  58. <a class="menu-item" href="/move/{{page}}">이동</a>
  59. <a class="menu-item" href="/raw/{{page}}">Raw</a>
  60. <a class="menu-item" href="/history/{{page}}/n/1">역사</a>
  61. <a class="menu-item" href="/xref/{{page}}/n/1">역링크</a>
  62. <a class="menu-item" style="{{style}}" href="/w/{{uppage}}">상위</a>
  63. </nav>
  64. </div>
  65. <h1 class="title">{{title}} <sub>{{acl}}</sub></h1>
  66. {% if redirect %}
  67. {% autoescape false %}
  68. <li style="margin-top: -20px;">{{redirect}}</li>
  69. <br>
  70. {% endautoescape %}
  71. {% endif %}
  72. <div>
  73. {% autoescape false %}
  74. {{data}}
  75. {% endautoescape %}
  76. </div>
  77. {% elif tn == 2 %}
  78. {% if preview == 1 %}
  79. <div id="tool">
  80. <nav class="menu">
  81. <a class="menu-item selected" href="#">미리보기</a>
  82. <a class="menu-item" href="/w/{{page}}">문서</a>
  83. </nav>
  84. </div>
  85. {% else %}
  86. <div id="tool">
  87. <nav class="menu">
  88. <a class="menu-item selected" href="#">수정</a>
  89. <a class="menu-item" href="/w/{{page}}">문서</a>
  90. </nav>
  91. </div>
  92. {% endif %}
  93. {% if preview == 1 %}
  94. <h1 class="title">{{title}} <sub>(미리보기)</sub></h1>
  95. {% else %}
  96. <h1 class="title">{{title}} <sub>(수정)</sub></h1>
  97. {% endif %}
  98. {% if notice %}
  99. <br>
  100. <span>{{notice}}</span>
  101. <br>
  102. <br>
  103. {% endif %}
  104. <form id="usrform" name="f1" method="POST" action="/edit/{{page}}">
  105. <textarea rows="30" cols="100" name="content" form="usrform">{{data}}</textarea>
  106. <input name="send" style="margin-top:10px;width:100%" type="text">
  107. <br>
  108. <br>
  109. <div class="form-actions">
  110. <button class="btn btn-primary" type="submit" onclick="f1.action='/edit/{{page}}';">저장</button>
  111. <button class="btn" type="submit" onclick="f1.action='/preview/{{page}}';">미리보기</button>
  112. </div>
  113. </form>
  114. {% if preview == 1 %}
  115. {% autoescape false %}
  116. {{enddata}}
  117. {% endautoescape %}
  118. {% endif %}
  119. {% elif tn == 3 %}
  120. <h1 class="title">{{title}}</h1>
  121. <table style="width: 100%;">
  122. <tbody>
  123. <tr>
  124. <td style="text-align: center;width:33.33%;">문서명</td>
  125. <td style="text-align: center;width:33.33%;">기여자</td>
  126. <td style="text-align: center;width:33.33%;">시간</td>
  127. </tr>
  128. </tbody>
  129. </table>
  130. {% autoescape false %}
  131. {{rows}}
  132. {% endautoescape %}
  133. {% elif tn == 4 %}
  134. <h1 class="title">{{title}}</h1>
  135. {% autoescape false %}
  136. {{rows}}
  137. {% endautoescape %}
  138. {% elif tn == 5 %}
  139. <div id="tool">
  140. <nav class="menu">
  141. <a class="menu-item selected" href="#">역사</a>
  142. <a class="menu-item" href="/w/{{page}}">문서</a>
  143. </nav>
  144. </div>
  145. <h1 class="title">{{title}} <sub>(역사)</sub></h1>
  146. <form class="usrform" method='POST' action='/history/{{page}}/n/1'>
  147. <select name="a">
  148. {% autoescape false %}
  149. {{select}}
  150. {% endautoescape %}
  151. </select>
  152. <select name="b">
  153. {% autoescape false %}
  154. {{select}}
  155. {% endautoescape %}
  156. </select>
  157. <button class="btn btn-primary" type='submit'>리비전 비교</button>
  158. <br>
  159. <br>
  160. <table style="width: 100%;">
  161. <tbody>
  162. <tr>
  163. <td style="text-align: center;width:33.33%;">판</td>
  164. <td style="text-align: center;width:33.33%;">기여자</td>
  165. <td style="text-align: center;width:33.33%;">시간</td>
  166. </tr>
  167. </tbody>
  168. </table>
  169. {% autoescape false %}
  170. {{rows}}
  171. {% endautoescape %}
  172. {% elif tn == 6 %}
  173. <div id="tool">
  174. <nav class="menu">
  175. <a class="menu-item selected" href="#" onclick="return false">옛문서</a>
  176. <a class="menu-item" href="javascript:history.back(-1);">뒤로가기</a>
  177. </nav>
  178. </div>
  179. <h1 class="title">{{title}} <sub>(옛문서)</sub></h1>
  180. <div>
  181. {% autoescape false %}
  182. {{data}}
  183. {% endautoescape %}
  184. </div>
  185. {% elif tn == 7 %}
  186. <div id="tool">
  187. <nav class="menu">
  188. <a class="menu-item selected" href="#" onclick="return false">raw</a>
  189. <a class="menu-item" href="/w/{{page}}">문서</a>
  190. </nav>
  191. </div>
  192. <h1 class="title">{{title}} <sub>(raw)</sub></h1>
  193. <div>
  194. {% autoescape false %}
  195. {{data}}
  196. {% endautoescape %}
  197. </div>
  198. {% elif tn == 8 %}
  199. <h1 class="title">{{title}} <sub>(삭제)</sub></h1>
  200. <div id="tool">
  201. <nav class="menu">
  202. <a class="menu-item selected" href="#" onclick="return false">삭제</a>
  203. <a class="menu-item" href="/w/{{page}}">문서</a>
  204. </nav>
  205. </div>
  206. <form id="usrform" method="POST" action="/delete/{{page}}">
  207. {{plus}}
  208. <br>
  209. <br>
  210. <button class="btn btn-primary" type="submit">삭제</button>
  211. </form>
  212. {% elif tn == 9 %}
  213. <h1 class="title">{{title}} <sub>(이동)</sub></h1>
  214. <div id="tool">
  215. <nav class="menu">
  216. <a class="menu-item selected" href="#" onclick="return false">이동</a>
  217. <a class="menu-item" href="/w/{{page}}">문서</a>
  218. </nav>
  219. </div>
  220. <form id="usrform" method="POST" action="/move/{{page}}">
  221. {{plus}}
  222. <br>
  223. <br>
  224. <input class="form-control input-sm" value="{{title}}" name="title" type="text">
  225. <br>
  226. <br>
  227. <button class="btn btn-primary" type="submit">이동</button>
  228. </form>
  229. {% elif tn == 10 %}
  230. <h1 class="title">{{title}} <sub>(토론 목록)</sub></h1>
  231. {% if list == 1 %}
  232. <div id="tool">
  233. <nav class="menu">
  234. <a class="menu-item selected" href="#" onclick="return false">토론 목록</a>
  235. <a class="menu-item" href="/w/{{page}}">문서</a>
  236. </nav>
  237. </div>
  238. {% else %}
  239. <div id="tool">
  240. <nav class="menu">
  241. <a class="menu-item selected" href="#" onclick="return false">닫힌 토론 목록</a>
  242. <a class="menu-item" href="/topic/{{page}}">토론 목록</a>
  243. </nav>
  244. </div>
  245. {% endif %}
  246. <form id="usrform" method="POST" action="/topic/{{page}}">
  247. {% autoescape false %}
  248. {{plus}}
  249. {% endautoescape %}
  250. {% if list == 1 %}
  251. <br>
  252. <a href="/topic/{{page}}/close">(닫힌 토론 보기)</a>
  253. <br>
  254. <br>
  255. <input class="form-control" name="topic" style="width: 100%">
  256. <br>
  257. <br>
  258. <button class="btn btn-primary" type="submit">새토론</button>
  259. {% endif %}
  260. </form>
  261. {% elif tn == 11 %}
  262. <h1 class="title">{{title}} <sub>(토론)</sub></h1>
  263. <div id="tool">
  264. <nav class="menu">
  265. <a class="menu-item selected" href="#" onclick="return false">토론</a>
  266. <a class="menu-item" href="/topic/{{page}}">토론 목록</a>
  267. </nav>
  268. </div>
  269. <h2>{{sub}}</h2>
  270. <br>
  271. {% autoescape false %}
  272. {{rows}}
  273. {% endautoescape %}
  274. {% if ban == 1 %}
  275. {% else %}
  276. <form id="usrform" method="POST" action="/topic/{{page}}/sub/{{suburl}}">
  277. <br>
  278. <textarea rows="10" cols="100" name="content" form="usrform"></textarea>
  279. <br>
  280. <br>
  281. <button class="btn btn-primary" type="submit">전송</button>
  282. </form>
  283. {% endif %}
  284. {% elif tn == 12 %}
  285. <h1 class="title">{{title}}</h1>
  286. <table style="width: 100%;">
  287. <tbody>
  288. <tr>
  289. <td style="text-align: center;width:50%;">토론명</td>
  290. <td style="text-align: center;width:50%;">시간</td>
  291. </tr>
  292. </tbody>
  293. </table>
  294. {% autoescape false %}
  295. {{rows}}
  296. {% endautoescape %}
  297. {% elif tn == 13 %}
  298. <h1 class="title">{{title}} <sub>(되돌리기)</sub></h1>
  299. <div id="tool">
  300. <nav class="menu">
  301. <a class="menu-item selected" href="#" onclick="return false">되돌리기</a>
  302. <a class="menu-item" href="javascript:history.back(-1);">뒤로가기</a>
  303. </nav>
  304. </div>
  305. <form id="usrform" method="POST" action="/revert/{{page}}/r/{{r}}">
  306. {{plus}}
  307. <br>
  308. <br>
  309. <button class="btn btn-primary" type="submit">되돌리기</button>
  310. </form>
  311. {% elif tn == 14 %}
  312. <h1 class="title">{{title}}</h1>
  313. <div>
  314. <h2 style="margin-top: -5px;">0.1 (알파)</h2>
  315. <li>문서 보기와 편집</li>
  316. <li>기타 문서</li>
  317. <li>랜덤 구현</li>
  318. <h2>0.2 ~ 0.9 (베타)</h2>
  319. <li>그 외 엄청나게 많은 기능 구현 (기존 <a class="out_link" href="https://github.com/2DU/OWNET">Ownet</a> 기능에서 로그인 필요한 기능 빼고 구현)</li>
  320. <h2>1.0</h2>
  321. <li>로그인 구현</li>
  322. <h2>1.1</h2>
  323. <li>차단 구현</li>
  324. <li>토론 닫기, 정지</li>
  325. <li>블라인드 구현</li>
  326. <li>ACL 기능 구현</li>
  327. <li>어드민 부여 구현</li>
  328. <h2>1.2</h2>
  329. <li>미리보기 구현</li>
  330. <li>대역 차단 구현</li>
  331. <li>diff 구현</li>
  332. <li>파일 업로드 개선</li>
  333. <li>파일 업로드 구현</li>
  334. <li>기본적인 다중 검사 기능</li>
  335. <h2>1.3</h2>
  336. <li>토론 목록 보강</li>
  337. <li>토론에 문법 지원</li>
  338. <li>비 효율적으로 돌아가던거 수정</li>
  339. <li>하위 문서 지원</li>
  340. <li>관리자 기능의 접근성 향상</li>
  341. <li>대규모도 편하게 접근되게</li>
  342. <h2>1.4</h2>
  343. <li>사용자 문서</li>
  344. <li>사문 접근성</li>
  345. <li>검색 기능 수정</li>
  346. <li>상위 문서 바로가기</li>
  347. <li>유저 기록 보기</li>
  348. <h2>1.5 (정식)</h2>
  349. <li>디자인 변경</li>
  350. <li>관리자 기능 접근성</li>
  351. <li>파일 문서 생성</li>
  352. <li>유저 가입 목록</li>
  353. <li>최근 차단을 유저 차단 기록으로</li>
  354. <h2>1.6 (진행중)</h2>
  355. <li>역링크 기능 완성 (완료)</li>
  356. <li>분류 완성 (완료)</li>
  357. <li>팝업 각주</li>
  358. <li>비밀번호 변경 (완료)</li>
  359. <li>몇몇 알고리즘 변경과 토론 있으면 불 나오게 (완료)</li>
  360. <h2>1.7</h2>
  361. <li>토론에 AJAX 적용</li>
  362. <li>리캡차 추가</li>
  363. <li>섬네일 기능</li>
  364. <li>업로드 보강</li>
  365. <h2>계속</h2>
  366. <li>버그 수정</li>
  367. <li>파서 제작 (Last 1.6.2)</li>
  368. <br>
  369. <h2>파이나무 라이선스</h2>
  370. <li>BSD 3-Clause License</li>
  371. <h2>외부 파일 라이선스</h2>
  372. <li>인용문 아이콘 <a class="out_link" href="http://www.flaticon.com/free-icon/quote-left_25672">Dave Gandy</a> CC 3.0 BY</li>
  373. <li>일부 파일 <a class="out_link" href="https://twitter.com/Basix1120">Basix</a></li>
  374. <br>
  375. <h2>기타</h2>
  376. <li>버전 1.6.5 - 정식</li>
  377. <br>
  378. <h2>개발 이념</h2>
  379. <li>나(<a class="out_link" href="https://github.com/2DU">2DU</a>) 쓰기 편한 엔진을 만들자</li>
  380. </div>
  381. {% elif tn == 15 %}
  382. <h1 class="title">{{title}}</h1>
  383. {% if title == '회원가입' %}
  384. <form id="usrform" method="POST" action="/register">
  385. {% elif title == '비밀번호 변경' %}
  386. <form id="usrform" method="POST" action="/change">
  387. {% else %}
  388. <form id="usrform" method="POST" action="/login">
  389. {% endif %}
  390. <span>아이디</span>
  391. <br>
  392. <br>
  393. <input name="id" type="text">
  394. <br>
  395. <br>
  396. <span>{% if title == '비밀번호 변경' %}현재{% endif %}비밀번호</span>
  397. <br>
  398. <br>
  399. <input name="pw" type="password">
  400. <br>
  401. <br>
  402. {% if title == '비밀번호 변경' %}
  403. <span>바꿀 비밀번호</span>
  404. <br>
  405. <br>
  406. <input name="pw2" type="password">
  407. <br>
  408. <br>
  409. {% endif %}
  410. <button class="btn btn-primary" type="submit">{{enter}}</button>
  411. </form>
  412. {% elif tn == 16 %}
  413. <h1 class="title">{{title}} <sub>(차단)</sub></h1>
  414. <form id="usrform" method="POST" action="/ban/{{page}}">
  415. {% if now == '차단' or now == '대역 차단' %}
  416. <input class="form-control" name="end" style="width: 100%">
  417. <br>
  418. <br>
  419. <span>아무것도 안 적으면 무기한 차단 입니다.</span>
  420. <br>
  421. <br>
  422. <span>차단 일 지정시 형식은 YYYY-MM-DD로 기록 해야합니다. (예시: 2017-01-20, 2017-10-15)</span>
  423. <br>
  424. <br>
  425. <span>지금 시각은 {{today}} 입니다.</span>
  426. <br>
  427. <br>
  428. <input class="form-control" name="why" style="width: 100%">
  429. <br>
  430. <br>
  431. <span>사유를 쓰는 곳 입니다.</span>
  432. {% if allif == 1 %}
  433. <br>
  434. <br>
  435. <input type="checkbox" name="band">
  436. <span>대역 차단</span>
  437. </input>
  438. {% endif %}
  439. <br>
  440. <br>
  441. {% endif %}
  442. <button class="btn btn-primary" type="submit">{{now}}</button>
  443. </form>
  444. {% elif tn == 17 %}
  445. <h1 class="title">{{title}}</h1>
  446. <div>
  447. <a class="out_link" style="margin-top: -5px;" href="https://namu.wiki/w/%EB%82%98%EB%AC%B4%EC%9C%84%ED%82%A4:%ED%8E%B8%EC%A7%91%20%EB%8F%84%EC%9B%80%EB%A7%90">참조</a>
  448. <h2>기초 문법</h2>
  449. <li>~~취소선~~ --취소선--</li>
  450. <li>'''강조'''</li>
  451. <li>''기울이기''</li>
  452. <li>__언더 바__</li>
  453. <li>^^윗 첨자^^</li>
  454. <li>,,아랫 첨자,,</li>
  455. <h2>문단 문법</h2>
  456. <li>[목차]</li>
  457. <li>= 1단계 문단 =</li>
  458. <li>== 2단계 문단 ==</li>
  459. <li>=== 3단계 문단 ===</li>
  460. <li>==== 4단계 문단 ====</li>
  461. <li>===== 5단계 문단 =====</li>
  462. <li>====== 6단계 문단 ======</li>
  463. <h2>링크 문법</h2>
  464. <li>[[내부 링크]]</li>
  465. <li>[[내부 링크|보이는 내용]]</li>
  466. <li>[[외부 링크]]</li>
  467. <li>[[외부 링크|보이는 내용]]</li>
  468. <h2>유튜브 문법</h2>
  469. <li>[youtube(코드)]</li>
  470. <li>[youtube(코드, width=가로, height=세로)]</li>
  471. <li>[youtube(코드, height=세로, width=가로)]</li>
  472. <h2>각주 문법</h2>
  473. <li>[* 내용]</li>
  474. <li>[*이름 내용]</li>
  475. <li>[각주]</li>
  476. <h2>넘겨주기 문법</h2>
  477. <li>#redirect 문서명</li>
  478. <li>#넘겨주기 문서명</li>
  479. </div>
  480. {% elif tn == 18 %}
  481. <h1 class="title">{{title}} <sub>(권한 부여)</sub></h1>
  482. <form id="usrform" method="POST" action="/admin/{{page}}">
  483. {% if now == '권한 부여' %}
  484. <select name="select">
  485. <option value="admin" selected="selected">관리자</option>
  486. <option value="ownet">소유자</option>
  487. </select>
  488. <br>
  489. <br>
  490. {% endif %}
  491. <button class="btn btn-primary" type="submit">{{now}}</button>
  492. </form>
  493. {% elif tn == 19 %}
  494. <h1 class="title">{{title}} <sub>(ACL)</sub></h1>
  495. <p>{{now}}</p>
  496. <form id="usrform" method="POST" action="/acl/{{page}}">
  497. <select name="select">
  498. <option value="admin" selected="selected">관리자만</option>
  499. <option value="user">유저 이상</option>
  500. <option value="normal">일반</option>
  501. </select>
  502. <br>
  503. <br>
  504. <button class="btn btn-primary" type="submit">ACL 변경</button>
  505. </form>
  506. {% elif tn == 20 %}
  507. <h1 class="title">{{title}}</h1>
  508. <table style="width: 100%;">
  509. <tbody>
  510. <tr>
  511. <td style="text-align: center;width:20%;">차단자</td>
  512. <td style="text-align: center;width:20%;">관리자</td>
  513. <td style="text-align: center;width:20%;">언제까지</td>
  514. <td style="text-align: center;width:20%;">왜</td>
  515. <td style="text-align: center;width:20%;">시간</td>
  516. </tr>
  517. </tbody>
  518. </table>
  519. {% autoescape false %}
  520. {{rows}}
  521. {% endautoescape %}
  522. {% elif tn == 21 %}
  523. <h1 class="title">{{title}}</h1>
  524. <div>
  525. <form action="" method=post enctype=multipart/form-data>
  526. <input type=file name=file>
  527. <input type=submit value=Upload>
  528. </form>
  529. </div>
  530. <span>{{number}}MB 이하 파일만 업로드 가능하고 파일 명에 ./\*<>|:? 들은 불가능 하며 확장자는 jpg, png, gif, jpeg만 가능 합니다.</span>
  531. {% elif tn == 22 %}
  532. <h1 class="title">{{title}}</h1>
  533. <table style="width: 100%;">
  534. <tbody>
  535. <tr>
  536. <td style="text-align: center;width:33.33%;">유저</td>
  537. <td style="text-align: center;width:33.33%;">아이피</td>
  538. <td style="text-align: center;width:33.33%;">언제</td>
  539. </tr>
  540. </tbody>
  541. </table>
  542. {% autoescape false %}
  543. {{rows}}
  544. {% endautoescape %}
  545. {% else %}
  546. <div id="tool">
  547. <nav class="menu">
  548. <a class="menu-item selected" href="#" onclick="return false">{{title}}</a>
  549. <a class="menu-item" href="javascript:history.back(-1);">뒤로가기</a>
  550. </nav>
  551. </div>
  552. <h1 class="title">{{title}} {% if plus %}<sub>{{plus}}</sub>{% endif %}</h1>
  553. <div>
  554. {% autoescape false %}
  555. {{data}}
  556. {% endautoescape %}
  557. </div>
  558. {% endif %}
  559. <hr id="last">
  560. <p>{% autoescape false %}{{license}}{% endautoescape %}</p>
  561. <div id="powered">
  562. <a href="https://github.com/2DU/PYnamu"><img src="{{url_for('static', filename='images/on2.png')}}" width="100px"></a>
  563. </div>
  564. </div>
  565. </div>
  566. </body>
  567. </html>