source code for html website at https://zachdecook.com
| -rw-r--r-- | 404.md | 20 | ||||
| -rwxr-xr-x | script.sh | 2 |
2 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,20 @@ +<link rel="stylesheet" type="text/css" href="https://zachdecook.com/shared/mvp/mvp-dark.css"/> +<link rel="stylesheet" type="text/css" href="../index2.css"/> + +<nav> + +* [**Homepage**](https://zachdecook.com) + +</nav> + +# 404 + +### That's an HTTP error code + +#### Something was not found. + +You may be comforted to know that Zach can be contacted +easily through email: <zachdecook@librem.one>. + +Really, tell him what you think of this error page, or what +you expected to see here... @@ -1,3 +1,5 @@ #!/bin/bash pandoc -f commonmark index.md -t html5 -s > index.html +mkdir -p 404 +pandoc -f commonmark 404.md -t html5 -s > 404/index.html |