33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="/static/gruvbox.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/png" href="/static/favicon.png"/>
|
|
<link rel="icon" href="/static/favicon.ico" type="image/x-icon"/>
|
|
</head>
|
|
<body id="top">
|
|
<main>
|
|
<nav class="nav">
|
|
<a href="/">Mi</a>
|
|
</nav>
|
|
<h1>{{ title }}</h1>
|
|
<p>{{ message }}</p>
|
|
<a href="/">Go home</a>
|
|
|
|
<div id="app"></div>
|
|
<script src="/static/elm.js"></script>
|
|
<script>
|
|
var app = Elm.Main.init({
|
|
node: document.getElementById("app")
|
|
});
|
|
</script>
|
|
<noscript>
|
|
You must enable JavaScript for this page to work.
|
|
</noscript>
|
|
<script src="/static/install-sw.js"></script>
|
|
</main>
|
|
</body>
|
|
</html>
|