added static html
This commit is contained in:
parent
b3782d5287
commit
34565f09a8
2 changed files with 18 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,3 +5,4 @@ server/db
|
|||
**/elm-stuff
|
||||
/client/index.html
|
||||
/server/state/
|
||||
client/static/main.js
|
||||
|
|
|
|||
17
client/static/index.html
Normal file
17
client/static/index.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Main</title>
|
||||
<script src="main.js"></script>
|
||||
<link href="paper.min.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="myapp"></div>
|
||||
<script>
|
||||
var app = Elm.Main.init({
|
||||
node: document.getElementById('myapp')
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue