initial commit

This commit is contained in:
CJSatnarine
2026-03-16 11:40:50 -04:00
commit f54ed0f4a6
9 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Redirecting...</title>
<style>
body {
background-color: #000;
color: #fff;
}
</style>
</head>
<script>
var links = []
{% if sites %}
{% for site in sites %}
links.push("{{ site.website.url }}")
{% endfor %}
{% endif %}
window.location.replace(links[Math.floor(Math.random() * links.length)])
</script>
<body>
<p>A fairy is guiding you to a most suitable destination...</p>
</body>
</html>