21 lines
545 B
HTML
Raw Normal View History

2024-11-05 06:08:01 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BuddyBook</title>
<script type="text/javascript">
2024-11-08 03:41:59 +00:00
var pathSegmentsToKeep = 0;
2024-11-05 06:08:01 +00:00
var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
2024-11-08 03:41:59 +00:00
'/?/' +
2024-11-05 06:08:01 +00:00
l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);
</script>
</head>
<body>
</body>
</html>