forked from roSievers/elm-sweeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (20 loc) · 828 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elm Sweeper</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div style="width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #9A9A9A; font-family: 'Source Sans Pro';">
<div style="font-size: 3em;">Building your project!</div>
</div>
</body>
<!-- Put the name of your app here (my sources place in `src` forder) -->
<script type="text/javascript" src="main.min.js"></script>
<!-- Removes splash and starts elm app. -->
<script type="text/javascript">
while (document.body.firstChild) {
document.body.removeChild(document.body.firstChild);
}
Elm.Main.fullscreen();
</script>