2016-05-08 16:56:25 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Ely.by - Account</title>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="msapplication-tap-highlight" content="no">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
|
2017-12-31 17:58:31 +05:30
|
|
|
<% if (htmlWebpackPlugin.options.isCspEnabled) { %>
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="%%CSP_CONTENT%%">
|
|
|
|
<% } %>
|
2017-04-13 00:04:12 +05:30
|
|
|
|
2016-05-08 16:56:25 +05:30
|
|
|
<% if (htmlWebpackPlugin.files.favicon) { %>
|
|
|
|
<link rel="shortcut icon" href="<%= htmlWebpackPlugin.files.favicon %>">
|
|
|
|
<% } %>
|
2017-04-13 00:04:12 +05:30
|
|
|
|
2018-01-28 16:11:38 +05:30
|
|
|
<script nonce="edge-must-die">
|
2017-04-13 00:04:12 +05:30
|
|
|
if (/Edge\/(must die)?/.test(navigator.userAgent)) {
|
|
|
|
// Edge has a broken fetch implementation, so forcing the polyfill
|
|
|
|
// https://www.reddit.com/r/webdev/comments/57ii4f/psa_edge_14_ships_a_broken_windowfetch/
|
|
|
|
// https://github.com/aurelia/fetch-client/issues/81
|
|
|
|
// https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/9370062/
|
|
|
|
// https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7773267/
|
|
|
|
delete window.fetch;
|
|
|
|
}
|
|
|
|
</script>
|
2016-05-08 16:56:25 +05:30
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="app" class="app"></div>
|
|
|
|
|
2019-12-08 00:32:00 +05:30
|
|
|
<%= require('app/first-render').default %>
|
2016-05-08 16:56:25 +05:30
|
|
|
|
|
|
|
<% for (var css in htmlWebpackPlugin.files.css) { %>
|
|
|
|
<link href="<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
|
|
|
|
<% } %>
|
2016-11-27 17:27:11 +05:30
|
|
|
|
|
|
|
<% if (htmlWebpackPlugin.options.scripts) {
|
|
|
|
htmlWebpackPlugin.options.scripts.forEach(function(scriptSrc) {
|
|
|
|
%>
|
|
|
|
<script src="<%= scriptSrc %>"></script>
|
|
|
|
<%
|
|
|
|
});
|
|
|
|
} %>
|
|
|
|
|
2016-05-08 16:56:25 +05:30
|
|
|
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
|
|
|
|
<script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
|
|
|
|
<% } %>
|
|
|
|
</body>
|
|
|
|
</html>
|