aboutsummaryrefslogtreecommitdiff
path: root/data/templates/redirect.html
blob: 0ae260dbb5131838fbff9d2c4b6679245d1341c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>