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.

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