Clean up website

This commit is contained in:
MeowcaTheoRange 2023-12-21 00:59:22 -06:00
parent 6e1bff0abb
commit 3b5c1700e0
5 changed files with 5 additions and 4 deletions

View file

@ -24,7 +24,7 @@
<small>(This site won't work well without it.)</small> <small>(This site won't work well without it.)</small>
<p>Or <a href="/">go back home</a>.</p> <p>Or <a href="/">go back home</a>.</p>
<script> <script>
window.addEventListener("load", function () { window.addEventListener("DOMContentLoaded", function () {
document.querySelector("#loading").style.display = "none"; document.querySelector("#loading").style.display = "none";
}); });
</script> </script>

View file

@ -5,8 +5,8 @@
"dev": "nodemon --exec 'rm -rf output/*;gulp;node debug.js' --ext '*' --ignore 'output/*'" "dev": "nodemon --exec 'rm -rf output/*;gulp;node debug.js' --ext '*' --ignore 'output/*'"
}, },
"devDependencies": { "devDependencies": {
"gulp": "^4.0.2",
"express": "^4.18.2", "express": "^4.18.2",
"gulp": "^4.0.2",
"through2": "^4.0.2" "through2": "^4.0.2"
} }
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -5,6 +5,7 @@
<title>MTRUWSaDMfHTML5</title> <title>MTRUWSaDMfHTML5</title>
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/styles/normal.css" /> <link rel="stylesheet" href="/styles/normal.css" />
<link rel="stylesheet" href="/styles/style.css" />
<link rel="stylesheet" href="/styles/windows.css" /> <link rel="stylesheet" href="/styles/windows.css" />
<link rel="stylesheet" href="./styles/endplorer.css" /> <link rel="stylesheet" href="./styles/endplorer.css" />
<style> <style>

View file

@ -28,7 +28,7 @@ fetch("./public/projects.json")
)} )}
<p> <p>
<button <button
onclick="window.open('${project.url}')" onclick="window.location.assign('${project.url}')"
> >
Open Open
</button> </button>
@ -43,4 +43,4 @@ fetch("./public/projects.json")
</p>`, </p>`,
"" ""
); );
}); });