steve0greatness,
created on Friday, 2 February 2024, 01:05:42 (1706835942),
received on Monday, 6 May 2024, 02:55:36 (1714964136)
Author identity: Steve0Greatness <steve0greatnessiscool@gmail.com>
623b7304723679b902f7d20b339569965461c5d9
build.py
@@ -237,7 +237,7 @@ def main():
print("Building redirects")
for OldLocation, NewLocation in REDIRECTS.items():
RenderPage("redirect.html", OldLocation, False, redirect=NewLocation)
RenderPage("redirect.html", OldLocation, False, redirect=NewLocation, old=OldLocation)
with open(BUILD_DIRECTORY + "/sitemap.txt", "w") as SitemapFile:
SitemapFile.write("\n".join(sitemap))
views/redirect.html
@@ -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>