1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <link rel="icon" type="image/png" sizes=32x32 href="<%= BASE_URL %>img/icons/meechat.png">
- <link rel="apple-touch-icon" href="<%= BASE_URL %>img/icons/meechat.png">
- <link rel="manifest" href="/manifest_pc.json?v=1.2">
- <meta name="theme-color" content="#4DBA87">
- <meta name="apple-mobile-web-app-capable" content="no">
- <meta name="apple-mobile-web-app-status-bar-style" content="default">
- <meta name="apple-mobile-web-app-title" content="MeeChat">
- <link rel="apple-touch-icon" href="<%= BASE_URL %>img/icons/meechat.png">
- <link rel="mask-icon" href="<%= BASE_URL %>img/icons/safari-pinned-tab.svg" color="#4DBA87">
- <meta name="msapplication-TileImage" content="<%= BASE_URL %>img/icons/meechat.png?imageview/0/w/144?v=1.0">
- <meta name="msapplication-TileColor" content="#2d2f34">
- <meta name="theme-color" content="#2d2f34">
- <script>
- if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) {
- location.replace('/h5.html' + location.search + location.hash)
- }</script>
- </head>
- <body>
- <div id="app"></div>
- <script>
- window.EOS_PROTOCOL = 'https'
- window.EOS_HOST = 'proxy.eosnode.tools'
- window.EOS_PORT = '443'
- </script>
- <!-- built files will be auto injected -->
- </body>
- </html>
|