mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-21 09:50:13 +01:00
39 lines
1 KiB
HTML
39 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title><%= webpackConfig.metadata.title %></title>
|
|
|
|
<meta name="description" content="<%= webpackConfig.metadata.description %>">
|
|
|
|
<% if (webpackConfig.htmlElements.headTags) { %>
|
|
<!-- Configured Head Tags -->
|
|
<%= webpackConfig.htmlElements.headTags %>
|
|
<% } %>
|
|
|
|
<!-- base url -->
|
|
<base href="<%= webpackConfig.metadata.baseUrl %>">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<app>
|
|
</app>
|
|
|
|
<div id="preloader">
|
|
<div></div>
|
|
</div>
|
|
|
|
<% if (webpackConfig.metadata.isDevServer && webpackConfig.metadata.HMR !== true) { %>
|
|
<!-- Webpack Dev Server reload -->
|
|
<script src="/webpack-dev-server.js"></script>
|
|
<% } %>
|
|
|
|
<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'>
|
|
</body>
|
|
</html>
|