Added a subpage that can take you to the old site.

This commit is contained in:
Sophia Atkinson 2021-04-26 22:34:42 -07:00 committed by GitHub
parent 2f32ced3f0
commit e19e3636f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

21
old/index.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="/index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<body>
<div class="jumbotron">
<h1 class="display-4">Redirecting<a class="dots">...</a></h1>
<p class="lead">If you don't get redirected, please click <a href="https://old.codsworth.xyz/">here</a></p>
<hr class="my-4">
<a class="btn btn-danger btn-lg" href="/" role="button">Go back</a>
<script>
window.location.replace("https://old.codsworth.xyz/")
</script>
</div>
</body>
</html>