2016-04-20 16:32:12 +03:00
|
|
|
<!DOCTYPE html>
|
2016-04-29 17:23:33 +03:00
|
|
|
<html lang="en">
|
2016-04-20 16:32:12 +03:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
2016-07-28 13:38:22 +03:00
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
2016-04-20 16:32:12 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-04-29 17:23:33 +03:00
|
|
|
|
2016-10-21 12:57:02 +03:00
|
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
2016-07-28 13:38:22 +03:00
|
|
|
|
2016-10-21 12:57:02 +03:00
|
|
|
<meta name="description" content="<%= htmlWebpackPlugin.options.metadata.description %>">
|
2016-04-29 17:23:33 +03:00
|
|
|
|
2016-07-28 13:38:22 +03:00
|
|
|
<% if (webpackConfig.htmlElements.headTags) { %>
|
|
|
|
|
<!-- Configured Head Tags -->
|
|
|
|
|
<%= webpackConfig.htmlElements.headTags %>
|
|
|
|
|
<% } %>
|
2016-04-20 16:32:12 +03:00
|
|
|
|
|
|
|
|
<!-- base url -->
|
2016-10-21 12:57:02 +03:00
|
|
|
<base href="<%= htmlWebpackPlugin.options.metadata.baseUrl %>">
|
|
|
|
|
|
2016-04-20 16:32:12 +03:00
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
2016-05-17 14:13:56 +03:00
|
|
|
<body>
|
2016-05-20 13:14:42 +03:00
|
|
|
<app>
|
|
|
|
|
</app>
|
2016-04-20 16:32:12 +03:00
|
|
|
|
2016-05-20 13:14:42 +03:00
|
|
|
<div id="preloader">
|
|
|
|
|
<div></div>
|
|
|
|
|
</div>
|
2016-04-20 16:32:12 +03:00
|
|
|
|
2016-10-21 12:57:02 +03:00
|
|
|
<% if (htmlWebpackPlugin.options.metadata.isDevServer && htmlWebpackPlugin.options.metadata.HMR !== true) { %>
|
2016-07-28 13:38:22 +03:00
|
|
|
<!-- Webpack Dev Server reload -->
|
|
|
|
|
<script src="/webpack-dev-server.js"></script>
|
2016-05-20 13:14:42 +03:00
|
|
|
<% } %>
|
2016-04-20 16:32:12 +03:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|