index.html 26 KB

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