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">
|
|
|
|
<% if (htmlWebpackPlugin.files.favicon) { %>
|
|
|
|
<link rel="shortcut icon" href="<%= htmlWebpackPlugin.files.favicon %>">
|
|
|
|
<% } %>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="app" class="app"></div>
|
|
|
|
|
|
|
|
<%= require('first-render').default %>
|
|
|
|
|
|
|
|
<% 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>
|