add redirect page for /projects

This commit is contained in:
Crispy 2022-05-08 19:29:55 +02:00
parent feac2d83c1
commit 920f7158fa
2 changed files with 43 additions and 0 deletions

28
docs/projects/index.html Normal file
View file

@ -0,0 +1,28 @@
<!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">
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/x-icon" href="/icons/favicon.png">
<title>Redirecting</title>
<meta http-equiv="Refresh" content="0; url='/'" />
</head>
<body>
<header>
<a href="/" id="logo"><img src="/icons/logo.png" alt=""></a>
</header>
<main>
<p>this link is no longer valid, please go <a href="/">here</a> instead</p>
</main>
<footer>
<p>Copyright © 2022 - CrispyPin</p>
<div class="links">
<a href="https://github.com/CrispyPin"><img src="/icons/github.png" alt="" width=32px></a>
<a href="https://crispypin.itch.io/"><img src="/icons/itch.io.svg" alt="" width=32px></a>
<a href="https://www.youtube.com/CrispyPin42"><img src="/icons/youtube.png" alt="" width=32px></a>
</div>
</footer>
</body>
</html>

15
pages/projects/index.html Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<include meta.html/>
<title>Redirecting</title>
<meta http-equiv="Refresh" content="0; url='/'" />
</head>
<body>
<include header.html/>
<main>
<p>this link is no longer valid, please go <a href="/">here</a> instead</p>
</main>
<include footer.html/>
</body>
</html>