saving
This commit is contained in:
parent
dbadcf267e
commit
49521ae595
24 changed files with 93 additions and 1093 deletions
32
index.html
Normal file
32
index.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue