-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6810d70
commit 623b730
Showing
2 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
<link rel="canonical" href="{{redirect}}"/> | ||
<meta charset="utf-8"/> | ||
<script>location="{{redirect}}"</script> | ||
<meta http-equiv="refresh" content="0;url={{redirect}}"/> | ||
<style>html{background:#000;color:#fff}a{color:#0ff;font-family:monospace}</style> | ||
<title>Redirecting</title><h1>Redirecting</h1> | ||
<p>This page has been moved to <a href="{{redirect}}">{{redirect}}</a> if you aren't automatically redirected, please click the following link to proceed to the new location of this page: <a href="{{redirect}}">{{redirect}}</a></p> | ||
<html lang="en-US"> | ||
|
||
<head> | ||
<style> | ||
html { background: #000; color: #fff } | ||
a { color: #0ff; font-family: monospace } | ||
</style> | ||
<link rel="canonical" href="{{redirect}}" /> | ||
<meta charset="utf-8" /> | ||
<meta name="robots" content="noindex" /> | ||
<script>location.replace("{{redirect}}")</script> | ||
<meta http-equiv="reload" content="0; url={{redirect}}" /> | ||
<title>Redirecting...</title> | ||
</head> | ||
|
||
<body> | ||
<main> | ||
<h1>Redirecting...</h1> | ||
<p>This page has been moved to <a href="{{redirect}}">{{redirect}}</a> if you aren't automatically redirected, please click the following link to proceed to the new location of this page: <a href="{{redirect}}">{{redirect}}</a></p> | ||
</main> | ||
</body> | ||
|
||
</html> |