webring/404.html

19 lines
368 B
HTML
Raw Normal View History

2018-06-03 01:11:00 +03:00
---
permalink: /404.html
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Loading..</title>
</head>
<body style='background:black'>
<script>
2018-09-30 10:46:04 +03:00
const parts = window.location.pathname.split("/")
const target = parts.slice(-1);
2018-06-03 01:11:00 +03:00
parts.splice(-1)
document.location.href = parts.join("/")+"/#"+target
</script>
</body>
</html>