2020-06-15 18:10:06 +02:00
|
|
|
<!DOCTYPE html>
|
2020-07-31 18:04:31 +02:00
|
|
|
<html lang="en" class="has-navbar-fixed-top">
|
2020-06-15 18:10:06 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>Daddy</title>
|
|
|
|
<% for (var css in htmlWebpackPlugin.files.css) { %>
|
2020-06-18 09:48:45 +02:00
|
|
|
<link href="/<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
|
2020-06-15 18:10:06 +02:00
|
|
|
<% } %>
|
|
|
|
<% if (htmlWebpackPlugin.files.favicon) { %>
|
2020-06-18 09:48:45 +02:00
|
|
|
<link rel="shortcut icon" href="/<%= htmlWebpackPlugin.files.favicon%>">
|
2020-06-15 18:10:06 +02:00
|
|
|
<% } %>
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-06-18 09:48:45 +02:00
|
|
|
|
2020-06-15 18:10:06 +02:00
|
|
|
<div id="app" class="is-fullheight"></div>
|
2020-06-18 09:48:45 +02:00
|
|
|
<script src="/config.js"></script>
|
2020-06-15 18:10:06 +02:00
|
|
|
<% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
|
2020-06-18 09:48:45 +02:00
|
|
|
<script type="text/javascript" src="/<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
|
2020-06-15 18:10:06 +02:00
|
|
|
<% } %>
|
|
|
|
</body>
|
|
|
|
</html>
|