-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (21 loc) · 861 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
25
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Elm Google Realtime Demo</title>
<!-- Load the Realtime JavaScript library -->
<script src="https://apis.google.com/js/api.js"></script>
<script src="src/bundle.js"></script>
<script src="src/elm-gapi.js"></script>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous"> -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app" style="width: 100%"></div>
<script>
var app = Elm.Main.embed(document.getElementById("app"));
elmGapi(app);
</script>
</body>
</html>