This commit is contained in:
2026-08-09 00:17:48 +02:00
parent dbf83d48cf
commit f70b51986e
5 changed files with 769 additions and 36 deletions
+15
View File
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>The page has been deleted</center>
<script>
/* Restore hatch: clicking the heading undeletes the website */
document.querySelector('h1').addEventListener('click', function () {
try { localStorage.removeItem('siteDeleted'); } catch (e) {}
location.replace('/');
});
</script>
</body>
</html>