index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="referer" content="never" />
  7. <meta name="renderer" content="webkit" />
  8. <meta name="viewport" content />
  9. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  10. <title>销花宝</title>
  11. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
  12. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet" />
  13. <% } %>
  14. <style>
  15. html,
  16. body,
  17. #app {
  18. height: 100%;
  19. margin: 0;
  20. padding: 0;
  21. }
  22. .once {
  23. background-color: #303133;
  24. height: 100%;
  25. display: flex;
  26. flex-direction: column;
  27. }
  28. .once .container {
  29. user-select: none;
  30. width: 100%;
  31. flex-grow: 1;
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. flex-direction: column;
  36. }
  37. .once .footer {
  38. text-align: center;
  39. padding: 10px 0;
  40. }
  41. .once .footer a {
  42. font-size: 12px;
  43. color: #ababab;
  44. text-decoration: none;
  45. }
  46. .once .title {
  47. color: #fff;
  48. font-size: 14px;
  49. margin-bottom: 10px;
  50. }
  51. .once .sub-title {
  52. color: #ababab;
  53. font-size: 12px;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <noscript>
  59. <!-- <strong
  60. >We're sorry but 花卉宝 doesn't work properly without JavaScript enabled. Please
  61. enable it to continue.</strong
  62. > -->
  63. </noscript>
  64. <div id="app">
  65. <div class="once">
  66. <div class="container">
  67. <div class="title">
  68. 正在加载资源
  69. </div>
  70. <div class="sub-title">
  71. 初次加载资源可能需要较多时间 请耐心等待
  72. </div>
  73. </div>
  74. <div class="footer">
  75. <a href="https://www.baidu.com/" target="_blank">
  76. 花卉宝
  77. </a>
  78. </div>
  79. </div>
  80. </div>
  81. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
  82. <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  83. <% } %>
  84. </body>
  85. </html>