mirror of
https://github.com/ilyakooo0/webring.git
synced 2024-11-22 13:35:24 +03:00
19 lines
368 B
HTML
19 lines
368 B
HTML
---
|
|
permalink: /404.html
|
|
---
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Loading..</title>
|
|
</head>
|
|
<body style='background:black'>
|
|
<script>
|
|
const parts = window.location.pathname.split("/")
|
|
const target = parts.slice(-1);
|
|
parts.splice(-1)
|
|
document.location.href = parts.join("/")+"/#"+target
|
|
</script>
|
|
</body>
|
|
</html>
|