evilring/data/templates/template.html
2025-02-16 17:04:48 -05:00

19 lines
349 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url={{ url }}">
<title>Redirecting...</title>
<style>
body {
background-color: #000;
color: #fff;
}
</style>
</head>
<body>
<p>A fairy is teleporting you to <a href="{{ url }}">{{ url }}</a>...!</p>
</body>
</html>