2025-01-25 02:38:46 -05:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>MacGregor House</title>
|
2025-01-26 04:17:06 -05:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Imbue:opsz,wght@10..100,100..900&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
2025-01-25 02:38:46 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
2025-01-26 04:17:06 -05:00
|
|
|
<script src="../compiled/Main.js"></script>
|
2025-01-25 02:38:46 -05:00
|
|
|
<script>
|
|
|
|
var app = Elm.Main.init({
|
|
|
|
node: document.getElementById("app"),
|
|
|
|
flags: [window.innerWidth, window.innerHeight],
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|