webring/404.html

19 lines
364 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>
var parts = window.location.pathname.split("/")
var target = parts.slice(-1);
parts.splice(-1)
document.location.href = parts.join("/")+"/#"+target
</script>
</body>
</html>