From 522a9e55821d46e084be43c15e5819594bbee220 Mon Sep 17 00:00:00 2001 From: Steph Enders <steph@senders.io> Date: Mon, 26 Jun 2023 19:49:02 -0400 Subject: Move entries to pages and rearrange files Some minor spellchecking also involved here. But basically the intention is to do: pages/ More permanent pages entries/ These are just the articles themselves templates/ These are page snippets to include around The intention for splitting out entries is for if I host this also on gemini the entries are what I can do the processing against vs the page itself which contains the boilerplate template --- pages/error.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pages/error.html (limited to 'pages/error.html') diff --git a/pages/error.html b/pages/error.html new file mode 100644 index 0000000..f044bda --- /dev/null +++ b/pages/error.html @@ -0,0 +1,38 @@ +<!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 title="site menu"> + <ul> + <li> + <a href='/'>home</a> + </li> + <li> + <a href='/resources'>resources</a> + </li> + <li> + <a href='/about'>about</a> + </li> + <li> + <a href='/blog'>blog</a> + </li> + </ul> + </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> -- cgit v1.2.3-54-g00ecf