mi/backend/templates/app.html

28 lines
968 B
HTML
Raw Permalink Normal View History

2020-11-10 22:11:05 +00:00
<!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" />
<meta name="robots" content="noindex" />
2020-11-10 22:11:05 +00:00
<link rel="icon" type="image/png" href="/static/favicon.png"/>
<link rel="icon" href="/static/favicon.ico" type="image/x-icon"/>
2020-11-15 20:52:57 +00:00
<link rel="manifest" href="/static/manifest.json" />
2020-11-10 22:11:05 +00:00
</head>
<body id="top">
<main>
<div id="app">{{ message }}</div>
<script src="/static/elm.js"></script>
<script>
2020-11-11 00:33:06 +00:00
var app = Elm.Main.init({
2020-11-10 22:11:05 +00:00
node: document.getElementById("app")
});
</script>
2020-11-15 21:53:45 +00:00
<noscript>
You must enable JavaScript for this page to work.
</noscript>
2020-11-15 21:08:41 +00:00
<script src="/static/install-sw.js"></script>
2020-11-10 22:11:05 +00:00
</main>
</body>
</html>