summaryrefslogtreecommitdiff
path: root/404.html
diff options
context:
space:
mode:
Diffstat (limited to '404.html')
-rw-r--r--404.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..6aa6304
--- /dev/null
+++ b/404.html
@@ -0,0 +1,38 @@
+---
+title: Page Not Found
+---
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ {%- include head.html -%}
+ <style>
+ h1 {
+ background-color: #eee;
+ width: 220px;
+ height: 220px;
+ border-radius: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center
+ }
+ body {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ font-size: 20px;
+ height: 80vh;
+ }
+ p {
+ font-size: 1.5em;
+ text-align: center;
+ margin: 0;
+ line-height: 2em;
+ }
+ </style>
+</head>
+<body>
+ <h1>404</h1>
+ <p>Page not found.</p>
+</body>
+</html>