Files
website-cv/404.html
T
2026-08-09 00:17:48 +02:00

16 lines
419 B
HTML

<!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>