UNPKG

core-dashboard-worona

Version:
55 lines (48 loc) 2.35 kB
<!DOCTYPE html> <html> <head> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/> <meta http-equiv="Pragma" content="no-cache"/> <meta http-equiv="Expires" content="0"/> <meta charset="utf-8"> <title><%= htmlWebpackPlugin.options.title || 'Worona'%></title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-KBSB5N');</script> <link rel="shortcut icon" href="/favicon.png"> <% for (var css in htmlWebpackPlugin.files.css) { %> <link href="<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet"> <% } %> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KBSB5N" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <% if (htmlWebpackPlugin.options.appMountId) { %> <div id="<%= htmlWebpackPlugin.options.appMountId%>"></div> <% } %> <% if (htmlWebpackPlugin.options.appMountIds && htmlWebpackPlugin.options.appMountIds.length > 0) { %> <% for (var index in htmlWebpackPlugin.options.appMountIds) { %> <div id="<%= htmlWebpackPlugin.options.appMountIds[index]%>"></div> <% } %> <% } %> <% if (htmlWebpackPlugin.options.window) { %> <script> <% for (var varName in htmlWebpackPlugin.options.window) { %> window['<%=varName%>'] = <%= JSON.stringify(htmlWebpackPlugin.options.window[varName]) %>; <% } %> </script> <% } %> <script src="<%= htmlWebpackPlugin.options.publicPath %><%= htmlWebpackPlugin.options.vendorsFile %>"></script> <% for (var chunk in htmlWebpackPlugin.files.chunks) { %> <script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script> <% } %> <% if (htmlWebpackPlugin.options.devServer) { %> <script src="<%= htmlWebpackPlugin.options.devServer%>/webpack-dev-server.js"></script> <% } %> </body> </html>