mi/backend/templates/app.html

24 lines
774 B
HTML
Raw 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" />
<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" />
<div id="root"></div>
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>
</main>
</body>
</html>