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.

218 lines
8.9 KiB

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. <p class="story-text" title="{{paragraph_part[0].author}}, {{paragraph_part[0].create_at}}, {{paragraph_part[0].like_num}}">{{paragraph_part[0].text}}</p>
  38. <img src="{{story.avatar}}" style="width: 80%">
  39. <hr>
  40. {% for p in paragraph_part[1:] %}
  41. <p class="story-text" title="{{p.author}}, {{p.create_at}}, {{p.like_num}}">{{p.text}}</p>
  42. {% endfor %}
  43. </div>
  44. <div style="font-size:90%;">
  45. <ul>
  46. <li>点击“续!”进行创作。</li>
  47. {% if story.is_tree %}
  48. <li>从第二天开始,在每天的10:00/16:00/22:00,对应故事线赞数总和最高且自身赞数不小于{{min_like_num}}的续写将入选,成为这个角色默认展示故事的一部分。</li>
  49. {% else %}
  50. <li>在每天的10:00/16:00/22:00,赞数最高且不小于{{min_like_num}}的续写将入选,成为这个角色最终故事的一部分。如果没有,所有都会被保留进入下一时段。</li>
  51. {% endif %}
  52. <li>参与创作需要回答几个简单的问题以验证学生身份,或者通过<a href="https://thu.closed.social/">闭社清华站</a>账号登录。</li>
  53. <li>联系邮箱:<a href="mailto:{{email}}">{{email}}</a></li>
  54. </ul>
  55. </div>
  56. </div>
  57. <div class="part2" id="part2">
  58. <div class="paragraph-list twin front part-box">
  59. <h1 style="margin: -8px -5px 20px">备选后续</h1>
  60. <span style="margin:8px" class="sort-by">
  61. {% if sort_by == 'like' %}
  62. <a href="?sort_by=time#part2">按时间</a> | <b>按赞数</b>
  63. {% else %}
  64. <b>按时间</b> | <a href="?sort_by=like#part2">按赞数</a>
  65. {% endif %}
  66. </span>
  67. {% for p in pagination.items %}
  68. <div class="qbox">
  69. <small>No. {{p.id}}</small>
  70. <p class="story-text">{{p.text}}</p>
  71. <div class="text-end" title="{{p.create_at}}">
  72. {% for emoji, num, reacted, kind in p.reaction_status() %}
  73. <button class="btn {{'btn-secondary' if reacted else 'btn-outline-secondary can-react'}}
  74. btn-sm" data-kind="{{kind}}" data-pid="{{p.id}}">{{emoji}} <span>{{num or ''}}</span></button>
  75. {% endfor %}
  76. <br>
  77. <time class="timeago" datetime="{{p.time}}"></time>
  78. </div>
  79. </div>
  80. {% endfor %}
  81. <nav>
  82. <ul class="pagination">
  83. {%- for page in pagination.iter_pages(left_edge=2, left_current=1, right_current=3, right_edge=2) %}
  84. {% if page %}
  85. {% if page != pagination.page %}
  86. <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>
  87. {% else %}
  88. <li class="page-item active">
  89. <a class="page-link" href="#">{{ page }}<span class="visually-hidden">(current)</span></a>
  90. </li>
  91. {% endif %}
  92. {% else %}
  93. <li class="page-item"><span class=ellipsis>...</span></li>
  94. {% endif %}
  95. {%- endfor %}
  96. </ul>
  97. </nav>
  98. </div>
  99. <div class="create-paragraph twin behind qbox part-box">
  100. <h1 style="text-align:right;margin:-8px -8px 16px">续!</h1>
  101. <form action="create" method="post">
  102. <input type="hidden" name="story-id" value={{story_id}}>
  103. <div class="form-group">
  104. <textarea class="form-control" name="text" rows="11" placeholder="来续写{{story.title}}的故事吧!(不超过 140 字)" required maxLength="140"></textarea>
  105. </div>
  106. <div class="form-group">
  107. <button type="submit" class="btn btn-link btn-lg">续!</button>
  108. </div>
  109. </form>
  110. </div>
  111. </div>
  112. </div>
  113. <div class="footer">
  114. <p>
  115. <a href="//closed.social" target="_blank">闭社</a>提供技术支持,本报名系统开源于<a href="//git.closed.social/closed-social/">碧茶</a>
  116. </p>
  117. <p> 🄯 2021 Copyleft: closed.social</p>
  118. </div>
  119. <div class="modal fade" id="loginModal" tabindex="-1">
  120. <div class="modal-dialog">
  121. <div class="modal-content">
  122. <div class="modal-header">
  123. <h3 class="modal-title">登录</h3>
  124. </div>
  125. <div class="modal-body">
  126. <div class="text-center mb-4">
  127. <a href="{{cs_login_url}}" target="_blank" class="btn btn-link">闭社帐号登录</a>
  128. </div>
  129. <div class="text-center mb-4">
  130. <a href="#answerLogin" data-bs-toggle="collapse" class="btn btn-link" role="button">答题验证登录</a>
  131. <div class="collapse" id="answerLogin">
  132. <form action="{{guest_login_url}}" method="post">
  133. {% for id, question, hint, answer in verify_questions %}
  134. <div class="form-group row">
  135. <label for="{{id}}" class="col-sm-8 col-form-label">{{question}}</label>
  136. <div class="col-sm-4">
  137. <input type="text" class="form-control" name="{{id}}" id="{{id}}" placeholder="{{hint}}" required="required">
  138. </div>
  139. </div>
  140. {% endfor %}
  141. <button type="submit" class="btn btn-link btn-lg mb-3">提交</button>
  142. </form>
  143. </div>
  144. <p>
  145. </div>
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. </body>
  151. <script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
  152. <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>
  153. <script src="https://cdn.bootcdn.net/ajax/libs/jquery-timeago/1.6.7/jquery.timeago.min.js"></script>
  154. <script src="https://cdn.bootcdn.net/ajax/libs/jquery-timeago/1.6.7/locales/jquery.timeago.zh-CN.js"></script>
  155. <script>
  156. $('.can-react').click(function (e) {
  157. if (check_login())
  158. return;
  159. $this = $(this);
  160. $.post(
  161. 'react',
  162. {
  163. 'pid': $this.data('pid'),
  164. 'kind': $this.data('kind')
  165. },
  166. (n) => {
  167. $this.addClass('btn-secondary').removeClass('btn-outline-secondary can-react');
  168. console.log(n);
  169. if (n) {
  170. $this.find('span').text(n);
  171. }
  172. }
  173. ).fail(function(xhr, status, error) {
  174. console.log(xhr, status, error);
  175. alert(error);
  176. });;
  177. });
  178. function check_login() {
  179. if (! "{{username}}") {
  180. new bootstrap.Modal(document.getElementById('loginModal')).show();
  181. return true;
  182. }
  183. }
  184. $('.timeago').timeago();
  185. $('.twin').click((e) => {
  186. if($(e.currentTarget).hasClass('front'))
  187. return;
  188. let behind_box = $('.behind');
  189. let front_box = $('.front');
  190. behind_box.toggleClass('behind front');
  191. front_box.toggleClass('front behind');
  192. });
  193. $('.user-info .btn').click(check_login);
  194. $('textarea').focus(check_login);
  195. </script>
  196. </html>