diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-03-10 02:38:25 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-03-10 02:38:31 +0900 |
| commit | 5b49e6bca39d7cd3b98db8b826dc597d9f758a26 (patch) | |
| tree | 80ebdf92d2cfa072564655960706848f52d52d48 | |
| parent | 98459875cdb8374bc1a36476c4a0e102cfa08e0e (diff) | |
| download | blog.nsfisis.dev-5b49e6bca39d7cd3b98db8b826dc597d9f758a26.tar.gz blog.nsfisis.dev-5b49e6bca39d7cd3b98db8b826dc597d9f758a26.tar.zst blog.nsfisis.dev-5b49e6bca39d7cd3b98db8b826dc597d9f758a26.zip | |
chore: add public/404.html
| -rw-r--r-- | public/404.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..c0fb882 --- /dev/null +++ b/public/404.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html lang="ja-JP"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="nsfisis"> + <meta name="copyright" content="© 2021 nsfisis"> + <link rel="icon" type="image/svg+xml" href="/favicon.svg"> + <title>Page Not Found | REPL: Rest-Eat-Program Loop</title> + <link rel="stylesheet" href="/style.css"> + <link rel="stylesheet" href="/custom.css"> + </head> + <body class="list"> + <header class="header"> + <nav class="nav"> + <p class="logo"> + <a href="/">REPL: Rest-Eat-Program Loop</a> + </p> + </nav> + </header> + <main class="main"> + <article> + <div class="not-found"> + 404 + </div> + </article> + </main> + <footer class="footer"> + © 2021 nsfisis + </footer> + </body> +</html> |
