Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
325B

  1. #|
  2. src/web/exception.lisp
  3. Error Pages
  4. |#
  5. (in-package #:cl-deck-builder2.web)
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7. (defmethod on-exception ((app <web>) (code (eql 404)))
  8. (declare (ignore app))
  9. (merge-pathnames #P"_errors/404.html"
  10. *template-directory*))