29 lines
823 B
HTML
29 lines
823 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Hyperia</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="/_/icons/logo.svg">
|
|
<link rel="stylesheet" href="_/code/shared.css">
|
|
<style>
|
|
|
|
body {
|
|
font-size: 16px;
|
|
background-image: url("_/images/fabric.png");
|
|
background-size: 33vw auto; /* width height of each tile */
|
|
}
|
|
</style>
|
|
<script src="_/code/quill.js"></script>
|
|
<script type="module" src="index.js"></script>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
if (window.location.search) {
|
|
// Replace the URL with the clean path (e.g., '/')
|
|
window.history.replaceState(null, '', '/');
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |