12345678910111213141516171819202122232425262728293031323334353637 |
- <!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>
- <!-- <script>
- !function(d,a){var e=d.documentElement,c="orientationchange"in window?"orientationchange":"resize",v=function(){
- var f=e.clientWidth, ratio=1;
- if(f > 750 && f < 1300) {
- f = 1300;
- ratio = 1920 / 750;
- }
- if(f >= 1300) {
- f = 1920;
- ratio = 1920 / 750;
- }
- var p=20*(f/320) / ratio
- f&&(e.style.fontSize=p+"px")
- };d.addEventListener&&(a.addEventListener(c,v,!1),d.addEventListener("DOMContentLoaded",v,!1))}(document,window);
- </script> -->
- </head>
- <body>
- <noscript>
- <strong>We're sorry but K3 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app"></div>
- <script>
- window.EOS_PROTOCOL = "<?= $GLOBALS['eosProtocol'] ?>"
- window.EOS_HOST = "<?= $GLOBALS['eosHost'] ?>"
- window.EOS_PORT = "<?= $GLOBALS['eosPort'] ?>"
- </script>
- <!-- built files will be auto injected -->
- </body>
- </html>
|