diff options
Diffstat (limited to 'users/wpcarro/boilerplate/elm/index.html')
-rw-r--r-- | users/wpcarro/boilerplate/elm/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/users/wpcarro/boilerplate/elm/index.html b/users/wpcarro/boilerplate/elm/index.html new file mode 100644 index 000000000000..ce8f727b6f3b --- /dev/null +++ b/users/wpcarro/boilerplate/elm/index.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <title>Elm SPA</title> + <link rel="stylesheet" href="./output.css" /> + <script src="./Main.min.js"></script> + </head> + <body class="font-serif"> + <div id="mount"></div> + <script> + Elm.Main.init({node: document.getElementById("mount")}); + </script> + </body> +</html> |