mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-03-02 06:02:48 +05:30
29 lines
1.1 KiB
Plaintext
29 lines
1.1 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 %>
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Roboto:400,500&subset=latin,cyrillic" rel="stylesheet" type="text/css">
|
|
<link href="//fonts.googleapis.com/css?family=Roboto+Condensed&subset=latin,cyrillic" rel="stylesheet" type="text/css">
|
|
<% for (var css in htmlWebpackPlugin.files.css) { %>
|
|
<link href="<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
|
|
<% } %>
|
|
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
|
|
<script src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
|
|
<% } %>
|
|
</body>
|
|
</html>
|