Last active
August 9, 2017 23:56
-
-
Save mcade/5022d2476ab86c837dc9d75f545f0697 to your computer and use it in GitHub Desktop.
Basic index.html for Elm app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Rhythm Press - A poetic exhibition of rhythm adn rhyme</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css"> | |
| </head> | |
| <body> | |
| <div id="elm-app"></div> | |
| <script src="elm.js"></script> | |
| <script> | |
| const elmDiv = document.querySelector('#elm-app'); | |
| if (elmDiv) { | |
| var myApp = Elm.Main.embed(elmDiv); | |
| } | |
| </script> | |
| </body> | |
| </html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment