diff options
author | Steph Enders <steph@senders.io> | 2023-06-21 22:56:23 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-06-21 22:56:23 -0400 |
commit | 06bd3d7999501ee178826190fbd3b4a9e28cb6fa (patch) | |
tree | 86b181a3162581df70269439793df0810ac463ed /entries/error.html | |
parent | 80c1478e5af73f22cd26b667a371d4fb182647f7 (diff) |
Create simple template script for deployment
Diffstat (limited to 'entries/error.html')
-rw-r--r-- | entries/error.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/entries/error.html b/entries/error.html new file mode 100644 index 0000000..fbab7e9 --- /dev/null +++ b/entries/error.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + {head-common} + <title>The Woman in my Eye</title> + <meta name="description" + content="Page request not found"> +</head> +<body> + <header> + <h1>The page requested is not found!</h1> + </header> + {nav} + <main> + <article> + <h2>Oops, someone screwed up?</h2> + <p>The page you've requested does not exist. Sorry about that! Please + <a href="/">return to the homepage</a>.</p> + </article> + </main> + {footer} +</body> +</html> |