mirror of
https://github.com/ryannhg/elm-spa.git
synced 2024-11-29 05:26:54 +03:00
16 lines
414 B
HTML
16 lines
414 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Elm Application</title>
|
|
<link rel="stylesheet" href="https://not-much-css.netlify.com/not-much.css">
|
|
<link rel="stylesheet" href="/main.css">
|
|
</head>
|
|
<body>
|
|
<script src="/dist/elm.compiled.js"></script>
|
|
<script>
|
|
Elm.Main.init()
|
|
</script>
|
|
</body>
|
|
</html> |