Skip to content

Instantly share code, notes, and snippets.

@mcade
Last active August 9, 2017 23:56
Show Gist options
  • Select an option

  • Save mcade/5022d2476ab86c837dc9d75f545f0697 to your computer and use it in GitHub Desktop.

Select an option

Save mcade/5022d2476ab86c837dc9d75f545f0697 to your computer and use it in GitHub Desktop.
Basic index.html for Elm app
<!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