Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
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*))