forked from paolocarrasco/dhex-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 652 Bytes
/
index.html
File metadata and controls
19 lines (19 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title><%- webpackConfig.metadata.title %></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="<%- webpackConfig.metadata.baseUrl %>">
<!-- imported CSS are concatenated and added automatically -->
</head>
<body aurelia-app="main">
<div class="splash">
<div class="message"><%- webpackConfig.metadata.title %></div>
<i class="fa fa-spinner fa-spin"></i>
</div>
<% if (webpackConfig.metadata.ENV === 'development') { %>
<!-- Webpack Dev Server reload -->
<script src="/webpack-dev-server.js"></script>
<% } %>
</body>
</html>