diff options
author | Steph Enders <steph@senders.io> | 2023-06-26 09:54:59 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-06-26 09:54:59 -0400 |
commit | 72c9539e4b65a946ffde6daac3a36b7e77ab1347 (patch) | |
tree | 94f412f48542cbb8bcfdfc665fffd1291380f016 /entries | |
parent | c48d46ad4eb08f4b0d4b34cb24d1427c8f02529b (diff) |
Fix error page nav section
I removed the templated nav to a static nav and I forgot to update the
error page
Diffstat (limited to 'entries')
-rw-r--r-- | entries/error.html | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/entries/error.html b/entries/error.html index fbab7e9..1702d50 100644 --- a/entries/error.html +++ b/entries/error.html @@ -10,7 +10,22 @@ <header> <h1>The page requested is not found!</h1> </header> - {nav} + <nav title="site menu"> + <ul> + <li> + <a href='/'>home</a> + </li> + <li> + <a href='/resources'>resosurces</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> |