From 8ca9bb7cc6a5545174a57cf968e5124793ca3923 Mon Sep 17 00:00:00 2001 From: Jake Zerrer Date: Wed, 13 Aug 2025 10:44:16 -0400 Subject: Check in 404.html --- 404.html | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/core.clj | 2 +- 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 404.html diff --git a/404.html b/404.html new file mode 100644 index 0000000..008cf30 --- /dev/null +++ b/404.html @@ -0,0 +1,76 @@ +

< home

404 Oh, be some other path!

What's in a path? That which we call a page
by any other path would fail to load

\ No newline at end of file diff --git a/src/core.clj b/src/core.clj index b2b0d08..b8ba344 100644 --- a/src/core.clj +++ b/src/core.clj @@ -20,7 +20,7 @@ target-file (io/file target-path)] (io/make-parents target-file) (spit target-file (str (page-fn))))) - (spit (io/file "target/html/404.html") (str (e-404)))) + (spit (io/file "404.html") (str (e-404)))) (defn -main [] (clean) -- cgit v1.2.3