index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!--
  2. * @FilePath: index.html
  3. * @Author: 阿小凉
  4. * @Date: 2022-09-06 17:31:51
  5. * @LastEditors: 阿小凉
  6. * @LastEditTime: 2023-09-14 14:47:33
  7. * @Description:
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="zh-cmn-Hans">
  11. <head>
  12. <meta charset="utf-8" />
  13. <meta content="IE=edge" http-equiv="X-UA-Compatible" />
  14. <meta content="webkit" name="renderer" />
  15. <meta
  16. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
  17. name="viewport"
  18. />
  19. <!-- <meta
  20. http-equiv="Content-Security-Policy"
  21. content="upgrade-insecure-requests"
  22. /> -->
  23. <link href="<%= BASE_URL %>favicon.ico" rel="icon" />
  24. <title><%= VUE_APP_TITLE %></title>
  25. <meta content="<%= VUE_APP_AUTHOR %>" name="keywords" />
  26. <meta content="<%= VUE_APP_AUTHOR %>" name="author" />
  27. <link href="<%= BASE_URL %>static/css/loading.css" rel="stylesheet" />
  28. <script src="./tinymce/tinymce.min.js"></script>
  29. </head>
  30. <body>
  31. <noscript></noscript>
  32. <div id="app">
  33. <div class="first-loading-wrp">
  34. <div class="loading-wrp">
  35. <span class="dot dot-spin">
  36. <i></i>
  37. <i></i>
  38. <i></i>
  39. <i></i>
  40. </span>
  41. </div>
  42. <h1><%= VUE_APP_TITLE %></h1>
  43. </div>
  44. </div>
  45. <script>
  46. if (window.location.hostname !== 'localhost') {
  47. var _hmt = _hmt || []
  48. ;(function () {
  49. var hm = document.createElement('script')
  50. hm.src = 'https://hm.baidu.com/hm.js?085e0fa100dbc0e0e42931c16bf3e9e6'
  51. var s = document.getElementsByTagName('script')[0]
  52. s.parentNode.insertBefore(hm, s)
  53. })()
  54. }
  55. </script>
  56. </body>
  57. </html>