index.html 26 KB

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