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>
|
|
|
|
|
|
|
|
|
|
<title><%= webpackConfig.metadata.title %></title>
|
|
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-04-29 17:23:33 +03:00
|
|
|
|
|
|
|
|
<meta name="description" content="<%= webpackConfig.metadata.description %>">
|
|
|
|
|
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicon-96x96.png">
|
2016-04-20 16:32:12 +03:00
|
|
|
|
|
|
|
|
<!-- base url -->
|
|
|
|
|
<base href="<%= webpackConfig.metadata.baseUrl %>">
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
2016-05-17 14:13:56 +03:00
|
|
|
<body>
|
2016-04-20 16:32:12 +03:00
|
|
|
|
|
|
|
|
<app>
|
|
|
|
|
</app>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<% if (webpackConfig.metadata.ENV === 'development') { %>
|
2016-04-29 17:23:33 +03:00
|
|
|
<!-- Webpack Dev Server reload -->
|
|
|
|
|
<script src="/webpack-dev-server.js"></script>
|
2016-04-20 16:32:12 +03:00
|
|
|
<% } %>
|
|
|
|
|
|
2016-04-26 17:54:27 +03:00
|
|
|
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900italic,900&subset=latin,greek,greek-ext,vietnamese,cyrillic-ext,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
|
2016-04-20 16:32:12 +03:00
|
|
|
</body>
|
|
|
|
|
</html>
|