index.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <style>
  12. html,
  13. body,
  14. #app {
  15. height: 100%;
  16. margin: 0;
  17. padding: 0;
  18. }
  19. .once {
  20. background-color: #303133;
  21. height: 100%;
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .once .container {
  26. user-select: none;
  27. width: 100%;
  28. flex-grow: 1;
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. flex-direction: column;
  33. }
  34. .once .footer {
  35. text-align: center;
  36. padding: 10px 0;
  37. }
  38. .once .footer a {
  39. font-size: 12px;
  40. color: #ababab;
  41. text-decoration: none;
  42. }
  43. .once .title {
  44. color: #fff;
  45. font-size: 14px;
  46. margin-bottom: 10px;
  47. }
  48. .once .sub-title {
  49. color: #ababab;
  50. font-size: 12px;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <noscript>
  56. <strong
  57. >We're sorry but cool-admin doesn't work properly without JavaScript enabled. Please
  58. enable it to continue.</strong
  59. >
  60. </noscript>
  61. <div id="app">
  62. <div class="once">
  63. <div class="container">
  64. <div class="title">
  65. 正在加载资源
  66. </div>
  67. <div class="sub-title">
  68. 初次加载资源可能需要较多时间 请耐心等待
  69. </div>
  70. </div>
  71. <div class="footer">
  72. <a href="https://www.baidu.com/" target="_blank">
  73. 花卉宝
  74. </a>
  75. </div>
  76. </div>
  77. </div>
  78. <!-- built files will be auto injected -->
  79. </body>
  80. </html>