12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!--
- * @FilePath: index.html
- * @Author: 阿小凉
- * @Date: 2022-09-06 17:31:51
- * @LastEditors: 阿小凉
- * @LastEditTime: 2023-09-14 14:47:33
- * @Description:
- -->
- <!DOCTYPE html>
- <html lang="zh-cmn-Hans">
- <head>
- <meta charset="utf-8" />
- <meta content="IE=edge" http-equiv="X-UA-Compatible" />
- <meta content="webkit" name="renderer" />
- <meta
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
- name="viewport"
- />
- <!-- <meta
- http-equiv="Content-Security-Policy"
- content="upgrade-insecure-requests"
- /> -->
- <link href="<%= BASE_URL %>favicon.ico" rel="icon" />
- <title><%= VUE_APP_TITLE %></title>
- <meta content="<%= VUE_APP_AUTHOR %>" name="keywords" />
- <meta content="<%= VUE_APP_AUTHOR %>" name="author" />
- <link href="<%= BASE_URL %>static/css/loading.css" rel="stylesheet" />
- <script src="./tinymce/tinymce.min.js"></script>
- </head>
- <body>
- <noscript></noscript>
- <div id="app">
- <div class="first-loading-wrp">
- <div class="loading-wrp">
- <span class="dot dot-spin">
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- </span>
- </div>
- <h1><%= VUE_APP_TITLE %></h1>
- </div>
- </div>
- <script>
- if (window.location.hostname !== 'localhost') {
- var _hmt = _hmt || []
- ;(function () {
- var hm = document.createElement('script')
- hm.src = 'https://hm.baidu.com/hm.js?085e0fa100dbc0e0e42931c16bf3e9e6'
- var s = document.getElementsByTagName('script')[0]
- s.parentNode.insertBefore(hm, s)
- })()
- }
- </script>
- </body>
- </html>
|