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 %>">
|
|
|
|
|
|
2016-05-20 13:14:42 +03:00
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="assets/icon/apple-icon-57x57.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="assets/icon/apple-icon-60x60.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="assets/icon/apple-icon-72x72.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="assets/icon/apple-icon-76x76.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="assets/icon/apple-icon-114x114.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="assets/icon/apple-icon-120x120.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="assets/icon/apple-icon-144x144.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="assets/icon/apple-icon-152x152.png?v=2">
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="assets/icon/apple-icon-180x180.png?v=2">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="assets/icon/android-icon-192x192.png?v=2">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="assets/icon/favicon-32x32.png?v=2">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="assets/icon/favicon-96x96.png?v=2">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="assets/icon/favicon-16x16.png?v=2">
|
|
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
|
|
|
<meta name="msapplication-TileImage" content="assets/icon/ms-icon-144x144.png?v=2">
|
|
|
|
|
<meta name="theme-color" content="#4691d1">
|
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-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-05-20 13:14:42 +03:00
|
|
|
<% if (webpackConfig.metadata.ENV === 'development') { %>
|
2016-05-17 17:42:13 +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
|
|
|
|
2016-05-20 13:14:42 +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>
|