diff options
author | Joris Guyonvarch | 2014-09-02 21:35:58 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2014-09-02 21:35:58 +0200 |
commit | c4ae3b0ee4bd338995cfecf34e0aeb49f05fa70e (patch) | |
tree | 71530e9e2cfcbe888cb086593ea1e4d0bcc269a6 /index.html |
Initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..cbf37b4 --- /dev/null +++ b/index.html @@ -0,0 +1,34 @@ +<!DOCTYPE HTML> + +<html> + + <head> + <title>Avoid</title> + <meta charset="UTF-8"> + <link rel="stylesheet" type="text/css" href="style.css"> + <script src="resources/elm-runtime.js"></script> + <script src="src/build/Main.js"></script> + </head> + + <body> + + <h1>Avoid</h1> + + <div id="game"></div> + + <script type="text/javascript"> + var myPorts = {}; + var myContainer = document.getElementById('game'); + var myModule = Elm.Main; + Elm.embed(myModule, myContainer, myPorts); + </script> + + <a href="https://github.com/guyonvarch/avoid"> + <img style="position: absolute; top: 0; right: 0; border: 0;" + src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" + alt="Fork me on GitHub" + data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"> + </a> + </body> + +</html> |