2021的特普通奖
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

231 lines
9.2 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  6. <link rel="icon" type="image/png" href="static/img/icon-128.png" />
  7. <link href="https://fonts.yecdn.com/css2?family=Noto+Serif+SC:wght@300;700&display=swap" rel="stylesheet">
  8. <link href="https://fonts.yecdn.com/css2?family=Noto+Sans+SC&display=swap" rel="stylesheet">
  9. <meta property="og:title" content="华清大学特普通奖学金 {{story.title}}" />
  10. <meta property="og:description" content="华清大学特普通奖学金" />
  11. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  12. <link href="static/css/ordinary.css" rel="stylesheet">
  13. <title>第二届 华清大学特普通奖 {{story.title}}</title>
  14. <script>
  15. if(navigator.userAgent.search('MicroMessenger') !== -1)
  16. location.href = `https://closed.social/tools/safe_jump/?go=${encodeURIComponent(location.href)}&t=${encodeURIComponent('华清大学特普通奖')}`;
  17. </script>
  18. </head>
  19. <body>
  20. <div class="container">
  21. <a href=".">
  22. <div style='padding:15px'>
  23. <img src="static/img/logo.png" width="200px" />
  24. </div>
  25. </a>
  26. <div class="user-info">
  27. <div class="btn-group">
  28. <button type="button" class="btn btn-dark rounded-0 p-1 pl-2">
  29. <img class="rounded-circle" src="{{avatar}}" width="24">
  30. <span class="username ml-2">{{username or '未登录'}}</span>
  31. </button>
  32. </div>
  33. </div>
  34. <div class="part1 col-md-6">
  35. <div class="story-box qbox part-box">
  36. <h1>{{story.title}}</h1>
  37. <img src="{{story.avatar}}" style="width: 80%">
  38. <hr>
  39. {% for p in paragraph_part %}
  40. <p class="story-text" title="{{p.author}}, {{p.create_at}}, {{p.like_num}}">
  41. {{p.text}}
  42. {% if is_tree and p.id != tail %}
  43. <small><a href="?tail={{p.id}}"> ← 回到这里</a></small>
  44. {% endif %}
  45. </p>
  46. {% endfor %}
  47. </div>
  48. <div style="font-size:90%;">
  49. <ul>
  50. <li>点击“续!”进行创作。</li>
  51. {% if not is_tree %}
  52. <li>请注意是对现有候选人故事的续写,不是对其他续写的续写。</li>
  53. {% endif %}
  54. </li>
  55. {% if is_tree %}
  56. <li>从第二天开始,在每天的10:00/16:00/22:00,对应故事线赞数总和最高且自身赞数不小于{{min_like_num}}的续写将入选,成为这个角色默认展示故事的一部分。</li>
  57. {% else %}
  58. <li>在每天的10:00/16:00/22:00,赞数最高且不小于{{min_like_num}}的续写将入选,成为这个角色最终故事的一部分。如果没有,所有都会被保留进入下一时段。</li>
  59. {% endif %}
  60. <li>参与创作需要回答几个简单的问题以验证学生身份,或者通过<a href="https://thu.closed.social/">闭社清华站</a>账号登录。</li>
  61. <li>联系邮箱:<a href="mailto:{{email}}">{{email}}</a></li>
  62. </ul>
  63. </div>
  64. </div>
  65. <div class="part2" id="part2">
  66. <div class="paragraph-list twin front part-box">
  67. <h1 style="margin: -8px -5px 20px">备选后续</h1>
  68. <span style="margin:8px" class="sort-by">
  69. {% if sort_by == 'like' %}
  70. <a href="?sort_by=time#part2">按时间</a> | <b>按赞数</b>
  71. {% else %}
  72. <b>按时间</b> | <a href="?sort_by=like#part2">按赞数</a>
  73. {% endif %}
  74. </span>
  75. {% for p in pagination.items %}
  76. <div class="qbox">
  77. <small>No. {{p.id}}</small>
  78. {% if is_tree %}
  79. <small><a href="?tail={{p.id}}"> ← 查看后续</a></small>
  80. {% endif %}
  81. <p class="story-text">{{p.text}}</p>
  82. <div class="text-end" title="{{p.create_at}}">
  83. {% for emoji, num, reacted, kind in p.reaction_status() %}
  84. <button class="btn {{'btn-secondary' if reacted else 'btn-outline-secondary can-react'}}
  85. btn-sm" data-kind="{{kind}}" data-pid="{{p.id}}">{{emoji}} <span>{{num or ''}}</span></button>
  86. {% endfor %}
  87. <br>
  88. <time class="timeago" datetime="{{p.time}}"></time>
  89. </div>
  90. </div>
  91. {% endfor %}
  92. <nav>
  93. <ul class="pagination">
  94. {%- for page in pagination.iter_pages(left_edge=2, left_current=1, right_current=3, right_edge=2) %}
  95. {% if page %}
  96. {% if page != pagination.page %}
  97. <li class="page-item"><a class="page-link" href="{{ url_for('main_bp.story', story_id=story_id, page=page, per_page=pagination.per_page, key=key, sort_by=sort_by) }}">{{ page }}</a></li>
  98. {% else %}
  99. <li class="page-item active">
  100. <a class="page-link" href="#">{{ page }}<span class="visually-hidden">(current)</span></a>
  101. </li>
  102. {% endif %}
  103. {% else %}
  104. <li class="page-item"><span class=ellipsis>...</span></li>
  105. {% endif %}
  106. {%- endfor %}
  107. </ul>
  108. </nav>
  109. </div>
  110. <div class="create-paragraph twin behind qbox part-box">
  111. <h1 style="text-align:right;margin:-8px -8px 16px">续!</h1>
  112. <form action="create" method="post">
  113. <input type="hidden" name="story-id" value={{story_id}}>
  114. <input type="hidden" name="tail" value={{tail}}>
  115. <div class="form-group">
  116. <textarea class="form-control" name="text" rows="11"
  117. placeholder="来续写{{story.title}}的故事吧!(不超过 140 字)" required maxLength="140">{{draft}}</textarea>
  118. </div>
  119. <div class="form-group">
  120. <button type="submit" class="btn btn-link btn-lg">续!</button>
  121. </div>
  122. </form>
  123. </div>
  124. </div>
  125. </div>
  126. <div class="footer">
  127. <p>
  128. <a href="//closed.social" target="_blank">闭社</a>提供技术支持,本创作系统开源于<a href="//git.closed.social/">碧茶</a>
  129. </p>
  130. <p> 🄯 2021 Copyleft: closed.social</p>
  131. </div>
  132. <div class="modal fade" id="loginModal" tabindex="-1">
  133. <div class="modal-dialog">
  134. <div class="modal-content">
  135. <div class="modal-header">
  136. <h3 class="modal-title">登录</h3>
  137. </div>
  138. <div class="modal-body">
  139. <div class="text-center mb-4">
  140. <a href="{{cs_login_url}}" target="_blank" class="btn btn-link">闭社帐号登录</a>
  141. </div>
  142. <div class="text-center mb-4">
  143. <a href="#answerLogin" data-bs-toggle="collapse" class="btn btn-link" role="button">答题验证登录</a>
  144. <div class="collapse" id="answerLogin">
  145. <form action="{{guest_login_url}}" method="post">
  146. {% for id, question, hint, answer in verify_questions %}
  147. <div class="form-group row">
  148. <label for="{{id}}" class="col-sm-8 col-form-label">{{question}}</label>
  149. <div class="col-sm-4">
  150. <input type="text" class="form-control" name="{{id}}" id="{{id}}" placeholder="{{hint}}" required="required">
  151. </div>
  152. </div>
  153. {% endfor %}
  154. <button type="submit" class="btn btn-link btn-lg mb-3">提交</button>
  155. </form>
  156. </div>
  157. <p>
  158. </div>
  159. </div>
  160. </div>
  161. </div>
  162. </div>
  163. </body>
  164. <script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
  165. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
  166. <script src="https://cdn.bootcdn.net/ajax/libs/jquery-timeago/1.6.7/jquery.timeago.min.js"></script>
  167. <script src="https://cdn.bootcdn.net/ajax/libs/jquery-timeago/1.6.7/locales/jquery.timeago.zh-CN.js"></script>
  168. <script>
  169. $('.can-react').click(function (e) {
  170. if (check_login())
  171. return;
  172. $this = $(this);
  173. $.post(
  174. 'react',
  175. {
  176. 'pid': $this.data('pid'),
  177. 'kind': $this.data('kind')
  178. },
  179. (n) => {
  180. $this.addClass('btn-secondary').removeClass('btn-outline-secondary can-react');
  181. console.log(n);
  182. if (n) {
  183. $this.find('span').text(n);
  184. }
  185. }
  186. ).fail(function(xhr, status, error) {
  187. console.log(xhr, status, error);
  188. alert(error);
  189. });;
  190. });
  191. function check_login() {
  192. if (! "{{username}}") {
  193. new bootstrap.Modal(document.getElementById('loginModal')).show();
  194. return true;
  195. }
  196. }
  197. $('.timeago').timeago();
  198. $('.twin').click((e) => {
  199. if($(e.currentTarget).hasClass('front'))
  200. return;
  201. let behind_box = $('.behind');
  202. let front_box = $('.front');
  203. behind_box.toggleClass('behind front');
  204. front_box.toggleClass('front behind');
  205. });
  206. $('.user-info .btn').click(check_login);
  207. $('textarea').focus(check_login);
  208. </script>
  209. </html>