23 lines
611 B
HTML
23 lines
611 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
<meta name="theme-color" content="#000000">
|
||
|
<title>Elm App using Nix Starter Template</title>
|
||
|
<link rel="stylesheet" href="main.css">
|
||
|
|
||
|
<script src="main.min.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<noscript>
|
||
|
You need to enable JavaScript to run this app.
|
||
|
</noscript>
|
||
|
<div id="root"></div>
|
||
|
<script>var app = Elm.Main.init({ node: document.getElementById("root") });</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|