18 lines
405 B
HTML
18 lines
405 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var target = decodeURIComponent(location.hash.slice(1).replace(/\+/g, " "))
|
|
.replace(/&/g, '&')
|
|
.replace(/"/g, '"')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>');
|
|
document.write('<iframe src="' + target + '"></iframe>');
|
|
</script>
|
|
</body>
|
|
</html>
|