This commit is contained in:
Alexander 2025-06-07 14:01:26 -04:00
parent dbadcf267e
commit 49521ae595
24 changed files with 93 additions and 1093 deletions

32
index.html Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
html,
body,
iframe {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
border: none;
}
iframe {
display: block;
}
</style>
</head>
<body>
<iframe id="site-frame"></iframe>
<!-- At some point, make it so this can handle a missing `hostname` directory. -->
<script>
const target = `${window.location.hostname}/singular.html`;
document.getElementById('site-frame').src = target;
</script>
</body>
</html>