-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate.html
36 lines (35 loc) · 909 Bytes
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<noscript>
<meta http-equiv="refresh" content="0; url='%URL%'" />
</noscript>
<style>
body {
background: #35363a;
color: white;
font-family: sans-serif;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 0;
margin: 0;
}
a {
color: white;
}
</style>
<title>Redirecting...</title>
</head>
<body>
<span>Redirecting to <a href="%URL%">%URL%</a>...</span>
<script>
window.location.replace('%URL%' + window.location.hash);
</script>
</body>
</html>