summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www/index.html')
-rw-r--r--www/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/www/index.html b/www/index.html
new file mode 100644
index 0000000..76ce02c
--- /dev/null
+++ b/www/index.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Tonkadur - Elm Intepreter</title>
+ <meta charset="UTF-8">
+ <link rel="stylesheet" type="text/css" href="/style.css">
+ </head>
+ <body>
+ <div id="elm-page"></div>
+ <script src="script/main.js"></script>
+ <script src="global/script/urlparams.js"></script>
+ <script>
+ Elm.Main.init
+ (
+ {
+ flags:
+ {
+ url_parameters: tonkadur.urlparams.get_parameters()
+ },
+ node: document.getElementById("elm-page")
+ }
+ );
+ </script>
+ </body>
+</html>