Move gatsby data to top level

This commit is contained in:
Chuck Dries
2021-06-18 19:13:24 -07:00
parent f8fe81cb8f
commit 7135ec1976
133 changed files with 16750 additions and 16693 deletions

36
old website/spooky.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spooky 16 redirect</title>
<style>
body{
text-align:center;
background: #eee;
color: #333;
padding-top:48vh;
font-family: helvetica;
line-height: 1.6;
}
#p{
border:none;
border-bottom: 2px solid black;
padding: 5px;
background: #eee;
width: 300px;
}
#p:focus{
outline:none;
border-bottom: 2px solid #2390e0;
color: 2390e0;
}
</style>
</head>
<body>
<form action="spookyredir.php" method="post">
<!-- <label for="pass">What's the password? </label>-->
<input id="p" type="password" name="pass" placeholder="What's the password?" autofocus>
<input type="submit" value="Boo!">
</form>
</body>
</html>