customPushtransfer.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!--
  2. ?php
  3. **
  4. * Created by PhpStorm.
  5. * User: z-yang
  6. * Date: 2019/9/4
  7. * Time: 10:17
  8. *
  9. -->
  10. <!--
  11. * @Author: ZhengXiaowei
  12. * @Date: 2019-08-15 16:39:23
  13. * @LastEditors: ZhengXiaowei
  14. * @LastEditTime: 2019-09-03 15:30:12
  15. * @Description: 静态章节页
  16. -->
  17. <!DOCTYPE html>
  18. <html lang="en">
  19. <head>
  20. <meta charset="UTF-8" />
  21. <meta
  22. name="viewport"
  23. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
  24. />
  25. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  26. <link rel=icon type=image/png href="data:image/png;base64,iVBORw0KGgo=">
  27. <style>
  28. html,
  29. body,
  30. p {
  31. margin: 0;
  32. padding: 0;
  33. }
  34. html {
  35. background: #e6e6e6;
  36. }
  37. .chapter-content {
  38. padding: 10px 20px;
  39. }
  40. .chapter-content .chapter-text {
  41. color: #1a1a1a;
  42. line-height: 1.8;
  43. text-indent: 2em;
  44. margin-bottom: 10px;
  45. }
  46. .next-chapter__btn {
  47. font-size: 14px;
  48. color: #1a1a1a;
  49. width: 80%;
  50. margin: 0 auto;
  51. border: 1px solid #666;
  52. text-align: center;
  53. background: #e6e6e6;
  54. border-radius: 4px;
  55. line-height: 40px;
  56. margin-bottom: 20px;
  57. }
  58. </style>
  59. <title>{{$name}}</title>
  60. </head>
  61. <body>
  62. <main>
  63. <div class="chapter-content">
  64. @foreach($chapter_list as $item)
  65. <p class="chapter-text">
  66. {{$item}}
  67. </p>
  68. @endforeach
  69. </div>
  70. <div class="next-chapter__btn"><a href="{{$next_url}}">下一章</a></div>
  71. </main>
  72. </body>
  73. </html>