This commit is contained in:
SupertigerDev
2025-08-01 17:11:51 +00:00
commit 27ed278fbf
18 changed files with 9003 additions and 0 deletions

14
404.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<script>
sessionStorage.redirect = location.href;
const projectPages = true; // If you're using the base .github.io domain without a path (i.e. <name>.github.io is your home page), set this to false
const l = window.location;
const repo = projectPages ? "/" + l.pathname.split("/")[1] : "";
l.replace(
l.protocol + "//" + l.hostname + (l.port ? ":" + l.port : "") + repo
);
</script>
</head>
</html>