314214724f
secret pages get a noindex while standard pages get a description tag
28 lines
850 B
HTML
28 lines
850 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="robots" content="noindex">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>
|
|
JavaScript is required to use this page.
|
|
</noscript>
|
|
<script>
|
|
const redirects = [
|
|
"https://www.youtube.com/watch?v=dQw4w9WgXcQ", // Risk Astley - Never Gonna Give You Up
|
|
"https://www.youtube.com/watch?v=DnmHG3mJv1o", // Masayoshi Takanaka - Tropic Birds
|
|
"https://www.youtube.com/watch?v=ZZCt92zLmLI", // Blur - Intermission
|
|
"https://www.twitch.tv/robcdee", // awesome sauce
|
|
"https://piapro.net/intl/en.html", // mikudayooo
|
|
]
|
|
const index = ((Date.now() / 60000) | 0) % redirects.length // rotate every minute
|
|
window.location.replace(redirects[index])
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|