10 lines
291 B
HTML
10 lines
291 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>JS not enabled :(</body>
|
|
<script type="text/javascript">
|
|
let getUrl = window.location;
|
|
let baseUrl = getUrl .protocol + "//" + getUrl.host + "/";
|
|
let hash = window.location.hash;
|
|
window.location.href = baseUrl + "builder/" + hash;
|
|
</script>
|
|
</html>
|