1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<html>
<head>
<title>Lager debugger</title>
<base href="/">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script type="text/javascript" src="gui.js"></script>
<link rel="stylesheet" type="text/css" href="gui.css">
</head>
<body></body>
<script type="text/javascript">
var app = Elm.Main.fullscreen({ server: window.location.origin });
app.ports.title.subscribe(function(title) {
document.title = title;
});
</script>
</html>
|