index.html 1.5 KB

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