mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-17 21:53:03 +05:30
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
<!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">
|
|
<% } %>
|
|
|
|
<% if (htmlWebpackPlugin.options.scripts) {
|
|
htmlWebpackPlugin.options.scripts.forEach(function(scriptSrc) {
|
|
%>
|
|
<script src="<%= scriptSrc %>"></script>
|
|
<%
|
|
});
|
|
} %>
|
|
|
|
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
|
|
<script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
|
|
<% } %>
|
|
</body>
|
|
</html>
|