12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <title>
- <%= htmlWebpackPlugin.options.title %>
- </title>
- <script>
- document.addEventListener('DOMContentLoaded', function() {
- document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
- })
- </script>
- <link rel="stylesheet" href="<%= htmlWebpackPlugin.options.baseUrl %>static/index.css" />
- <!-- 引入外部js -->
- <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
- <script type="text/javascript">
- // 获取ip
- console.log(returnCitySN["cip"] + ',' + returnCitySN["cname"]);
- localStorage.setItem('Ip', returnCitySN["cip"]);
- </script>
- <script>
- var _hmt = _hmt || [];
- (function() {
- console.log(1111111111111)
- var hm = document.createElement("script");
- hm.src = "https://hm.baidu.com/hm.js?4a14570d894fcf5a82a160f7cefc21ce";
- var s = document.getElementsByTagName("script")[0];
- s.parentNode.insertBefore(hm, s);
- })();
- </script>
- </head>
- <body>
- <noscript>
- <strong>Please enable JavaScript to continue.</strong>
- </noscript>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|